随笔分类 -  JQuery

摘要:因为要做一个动态输入的表格,现在积累一下资料,在网上找了一些资料,经过总结是使用更加方便些,谁有更好的插件和封装的东西,请大家分享一下。其中HTML中的: 序号 缺省 启用 选项内容 操作 添加 ↑ ↓ 阅读全文
posted @ 2013-12-15 01:16 (二少)在南极 阅读(1047) 评论(0) 推荐(0)
摘要:(function(){ var Ploy = { Config: { ajaxUrl: "/ajax/ploy.ashx" }, ajax: function(params, callback) { var that = this; $.ajax({ type: "get", cache: false, dataType: "json", url: that.Config.ajaxUrl, data: params, success: arguments[1] || function(){}, error: arguments[2] 阅读全文
posted @ 2013-12-02 18:00 (二少)在南极 阅读(489) 评论(0) 推荐(0)
摘要:用户名: 密码: 01234 清空56789确认 阅读全文
posted @ 2013-11-06 22:22 (二少)在南极 阅读(8565) 评论(0) 推荐(0)
摘要:<style type="text/css"> *{margin:0;padding:0;list-style-type:none;}body{font:12px/180% Arial, Helvetica, sans-serif,"宋体";}a,img{border:0;}a{color:#5e5e5e;text-decoration:none;}a:hover{color:#3366cc;text-decoration:underline;}/* box */.box{position:absolute;width:600px;left: 阅读全文
posted @ 2013-04-24 22:29 (二少)在南极 阅读(1241) 评论(1) 推荐(0)
摘要:<script type="text/javascript"> $(function() { $('#tree').tree({ url: 'test.ashx' }) })</script></head><body class="easyui-layout"> <div region="north" border="false" style="overflow: hidden; height: 60px; backgr 阅读全文
posted @ 2012-10-22 17:28 (二少)在南极 阅读(259) 评论(0) 推荐(0)
摘要:DataTable dt = new DataTable(); DataColumn d1 = new DataColumn("id", System.Type.GetType("System.Int32")); DataColumn d2 = new DataColumn("text", System.Type.GetType("System.String")); DataColumn d3 = new DataColumn("Icon", System.Type.GetType(" 阅读全文
posted @ 2012-10-22 17:27 (二少)在南极 阅读(1246) 评论(0) 推荐(0)
摘要:function ok(){ debugger try{ var obj = new ActiveXObject("Scripting.Dictionary");//创建对象 obj.Add("hello",null);//增加新项 obj.Item("hello")="Chiweiyao";//给新增添的项赋值 obj.Add("world",null); obj.Item("world")="Greate"; 获取值 alert( obj.item(& 阅读全文
posted @ 2012-06-26 23:22 (二少)在南极 阅读(14158) 评论(2) 推荐(0)