摘要: <div class="img-div"> <a href="javascript:void(0);"><img class="img-responsive" src="{{$v.OutURL}}"></a> </div> <script src="/assets/js/jquery.min.js" 阅读全文
posted @ 2017-08-29 11:17 六月雨 阅读(1526) 评论(0) 推荐(0) 编辑
摘要: 框架一直是敏捷开发中的利器,能让开发者很快的上手并做出应用,甚至有的时候,脱离了框架,一些开发者都不会写程序了。成长总不会一蹴而就,从写出程序获取成就感,再到精通框架,快速构造应用,当这些方面都得心应手的时候,可以尝试改造一些框架,或是自己创造一个。 曾经我以为Python世界里的框架已经够多了,后 阅读全文
posted @ 2017-08-22 19:18 六月雨 阅读(46593) 评论(0) 推荐(1) 编辑
摘要: MVC微信开发获取用户OpenID 阅读全文
posted @ 2017-08-11 15:17 六月雨 阅读(886) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Data;using System.Drawing;using System.Linq;using System.Web;namespace WXCustomerCard.Code 阅读全文
posted @ 2017-08-10 15:08 六月雨 阅读(252) 评论(0) 推荐(0) 编辑
摘要: public List<Customer> LoadPage(string where, int index, int size, out int total, List<DbParameter> args) { List<DbParameter> ps = new List<DbParameter 阅读全文
posted @ 2017-08-08 11:25 六月雨 阅读(171) 评论(0) 推荐(0) 编辑
摘要: public void Insert(Customer item) { string sql = @"USE [WXCustomerCard]GOINSERT INTO [dbo].[customer_info] ([customer_id] ,[member_id] ,[grade_id] ,[n 阅读全文
posted @ 2017-08-04 10:47 六月雨 阅读(1106) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="utf-8"?><configuration> <configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler 阅读全文
posted @ 2017-08-04 10:45 六月雨 阅读(157) 评论(0) 推荐(0) 编辑
摘要: $(document).ready(function () { var current = 1; var over = true; function load() { if (!over) { return; } over = false; $(".loading").show(); $.ajax( 阅读全文
posted @ 2017-08-04 10:27 六月雨 阅读(2551) 评论(1) 推荐(0) 编辑
摘要: //出自http://www.cnblogs.com/ahjesus function ConvertJSONDateToJSDate(jsonDate) { /// <summary> /// json日期格式转换为正常格式 /// </summary> /// <param name="json 阅读全文
posted @ 2017-08-04 10:21 六月雨 阅读(8724) 评论(0) 推荐(0) 编辑
摘要: 写成下面这种方式时,异步加载回来的数据不受JS控制 $(."orderdiv").click(function(){ $(this).find(".orderinfo").slideToggle(); $(this).find("i").slideToggle(); }) 下面这种方式,异步加载回来 阅读全文
posted @ 2017-08-04 10:19 六月雨 阅读(884) 评论(0) 推荐(0) 编辑