js
jjjjggggaaaa
这个作者很懒,什么都没留下…
展开
-
js的直接显示在页面
var i='1'; hh document.write(i); 22原创 2013-07-06 17:18:13 · 1387 阅读 · 0 评论 -
js的一下东西
怎么样得到当前访问的页面 alert(window.location.href); alert(window.location); alert(location.href); alert(parent.location.href); alert(top.location.href); alert(document.location.hr原创 2013-07-06 17:25:35 · 516 阅读 · 0 评论 -
jquery的 广告浮动
$(function(){ jQuery(".cmmsh").slide({ mainCell:".bd ul",effect:"leftLoop",vis:4,scroll:1,autoPlay:true}); });原创 2013-07-16 14:50:24 · 1746 阅读 · 1 评论 -
select,radio 和checkbox动态自动匹配。
//初始化加载 $(function(){ $("[rootinit]").each(function(){ var $this=$(this); var _sel=$this.is("select"); var _v=$this.attr("rootinit"); if(_sel){ $this.val(_v); }els原创 2013-07-17 14:52:45 · 719 阅读 · 0 评论 -
js限制输入
1.文本框只能输入数字代码(小数点也不能输入) 2.只能输入数字,能输小数点. 3.数字和小数点方法二 <input type=text t_value="" o_value="" onkeypress="if(!this.value.match(/^[\+\-]?\d*?\.?\d*?$/))this.value=this.t_value;else this.t_value=t翻译 2013-07-20 10:17:55 · 422 阅读 · 0 评论