摘要: 例子一: 例子二: 阅读全文
posted @ 2016-09-12 10:34 鞍山老菜鸟 阅读(1333) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2016-09-05 17:08 鞍山老菜鸟 阅读(123) 评论(0) 推荐(0)
摘要: 转:http://www.cnblogs.com/wangmeijian/p/5824176.html 需引用jq CSS HTML 阅读全文
posted @ 2016-09-02 17:14 鞍山老菜鸟 阅读(529) 评论(0) 推荐(0)
摘要: 以下为转载内容,勿笑 第一步: 创建:JsonContentNegotiator.cs 第二步: Global.asax 第三步: WebApiConfig.cs 阅读全文
posted @ 2016-07-30 15:21 鞍山老菜鸟 阅读(1714) 评论(0) 推荐(0)
摘要: 本随笔为文章转载,勿笑 第一步: 创建JsonpMediaTypeFormatter 第二步: Global.asax添加以下代码 阅读全文
posted @ 2016-07-30 15:16 鞍山老菜鸟 阅读(600) 评论(0) 推荐(0)
摘要: 1.关闭 Visual Studio 2.打开 C:/Program Files (x86)/Microsoft Visual Studio 12.0/Common7/Packages/schemas/html 文件夹 3.删除 CommonHTML5Types.bin 4.打开 commonHTM 阅读全文
posted @ 2016-06-27 09:59 鞍山老菜鸟 阅读(305) 评论(0) 推荐(0)
摘要: input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none !important; margin: 0; } input[type="number"] { ... 阅读全文
posted @ 2016-06-24 09:47 鞍山老菜鸟 阅读(238) 评论(0) 推荐(0)
摘要: 例子 阅读全文
posted @ 2016-05-30 17:45 鞍山老菜鸟 阅读(257) 评论(0) 推荐(0)
摘要: /// /// 卡卷类型 /// public enum CardTypeEnum { 代金券 = 1, 优惠卷 = 2 } foreach (int myCode in Enum.GetValues(typeof(CardTypeEnum))) { string strName = Enum.GetName(typeof(CardTypeEnum), m... 阅读全文
posted @ 2016-05-28 16:04 鞍山老菜鸟 阅读(122) 评论(0) 推荐(0)
摘要: toDecimal2: function (x) { var f = parseFloat(x); if (isNaN(f)) { return false; } var f = Math.round(x * 100) / 100; var s ... 阅读全文
posted @ 2016-05-24 15:31 鞍山老菜鸟 阅读(195) 评论(0) 推荐(0)