摘要: cookie.jsfunction Cookie(key,value){ this.key=key; if(value!=null) { this.value=escape(value); } this.expiresTime=null; this.... 阅读全文
posted @ 2015-10-30 12:17 Demo金 阅读(482) 评论(0) 推荐(0) 编辑
摘要: 移除HTML5 input在type="number"时的上下小箭头第一种:chrome下:input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{ -webkit-appearance: none !important; ... 阅读全文
posted @ 2015-10-30 12:11 Demo金 阅读(259) 评论(0) 推荐(0) 编辑
摘要: ---恢复内容开始---比较和联系:1.bind()函数只能针对已经存在的元素进行事件的设置;但是live(),on(),delegate()均支持未来新添加元素的事件设置;2.bind()函数在jquery1.7版本以前比较受推崇,1.7版本出来之后,官方已经不推荐用bind(),替代函数为on(... 阅读全文
posted @ 2015-10-30 11:50 Demo金 阅读(23926) 评论(0) 推荐(5) 编辑
摘要: inputjquery提交 $(function () { document.onkeydown = function (event) { var e = event || window.event || arguments.callee.ca... 阅读全文
posted @ 2015-10-30 11:48 Demo金 阅读(581) 评论(0) 推荐(0) 编辑