web之家  
上一页 1 ··· 57 58 59 60 61 62 63 64 65 ··· 92 下一页

2017年6月12日

摘要: 一、什么是JavaScript中对象的prototype属性 JavaScript中对象的prototype属性,是用来返回对象类型原型的引用的。我们使用prototype属性提供对象的类的一组基本功能。并且对象的新实例会”继承”赋予该对象原型的操作。但是这个prototype到底是怎么实现和被管理 阅读全文
posted @ 2017-06-12 11:13 路修远而求索 阅读(537) 评论(0) 推荐(0) 编辑

2017年6月9日

摘要: <textarea class="form-control" id="gryj" rows="3" maxlength="30" style="resize:none;"></textarea> 可以去掉。 阅读全文
posted @ 2017-06-09 16:56 路修远而求索 阅读(2701) 评论(0) 推荐(0) 编辑
 
摘要: $("#c01-select").select2({ ajax: { url: "data.json", dataType: 'json', delay: 250, data: function (params) { return { q: params.term, }; }, processRes 阅读全文
posted @ 2017-06-09 15:02 路修远而求索 阅读(1363) 评论(0) 推荐(0) 编辑
 
摘要: 二、导入css和js到网站上 1.使用CDN,节省自己网站的流量 ? 1 2 <link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/css/select2.min.css" rel="external nofollow" r 阅读全文
posted @ 2017-06-09 11:22 路修远而求索 阅读(5881) 评论(0) 推荐(1) 编辑
 
摘要: 针对获取到location.href的兼容代码: [javascript] view plain copy try { ajaxLocation = location.href; } catch( e ) { // Use the href attribute of an A element //  阅读全文
posted @ 2017-06-09 11:00 路修远而求索 阅读(12284) 评论(0) 推荐(3) 编辑

2017年6月8日

摘要: 参数jsonp 和 jsonpCallback jsonp指定使用哪个名字将回调函数传给服务端,也就是在服务端通过 request.getParameter(""); 的那个名字,而jsonpCallback就是request.getParamete("")取得的值,也就是回调函数的名称。其实这两个 阅读全文
posted @ 2017-06-08 18:03 路修远而求索 阅读(3982) 评论(0) 推荐(0) 编辑
 
摘要: <h3>本地数据方式</h3> <select class="form-control input-sm downList1"> <option></option> </select> <h3>AJAX获取数据方式</h3> <select class="form-control input-sm 阅读全文
posted @ 2017-06-08 15:28 路修远而求索 阅读(15499) 评论(0) 推荐(0) 编辑
 
摘要: 使用select2实现多选select下拉框 使用select2实现多选select下拉框 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="renderer" content="webkit|ie-comp|ie-st 阅读全文
posted @ 2017-06-08 14:59 路修远而求索 阅读(299) 评论(0) 推荐(0) 编辑
 
摘要: select2 api参数的文档 官网文档地址是:http://select2.github.io/select2/#documentation。 具体参数可以参考一下: 参数 类型 描述 Width 字符串 控制 宽度 样式属性的Select2容器div maximumInputLength in 阅读全文
posted @ 2017-06-08 11:40 路修远而求索 阅读(2939) 评论(0) 推荐(0) 编辑
 
摘要: Begin...End之间的是一个语句块,一般Begin...End用在 ( 相当于 {})whileif等语句中在T_SQL中,if/while后只能紧跟一条sql语句,如果有多条则应该用Begin..end包含起来如:if (@int > 9)set @int = 1elseset @int = 阅读全文
posted @ 2017-06-08 10:36 路修远而求索 阅读(9504) 评论(0) 推荐(0) 编辑
上一页 1 ··· 57 58 59 60 61 62 63 64 65 ··· 92 下一页