摘要:
// @shaoyang 父页面 window['mengBanLogin']={ mengBanArr : new Array(), mengBanLoginSuccess : function(){ console.log('mengban... 阅读全文
摘要:
选择前 3 个之后的所有 元素:$("tr:gt(2)");选择前 2 个 元素:$("tr:lt(2)"); 阅读全文
摘要:
换成:用$("#myBtn").click(function(){...//判断验证});表单提交js:function formSubmit(){if(flag=="1"){$("#form").submit();}else if(flag=="2"){$("#form").attr("actio... 阅读全文
摘要:
var bgWidth = document.body.clientWidth + "px", bgHeight = document.body.clientHeight + "px", 阅读全文
摘要:
var node=$('#id');第一种写法if(node.is(':hidden')){ //如果node是隐藏的则显示node元素,否则隐藏 node.show(); }else{ node.hide();}第二种写法if(!node.is(':visible')){ //如果node... 阅读全文
摘要:
var node = $('#id');node.click(function(){ this.css('display','block'); //报错 this是一个html元素,不是jquery对象,因此this不能调用jquery的css()方法 $(this).css(); ... 阅读全文
摘要:
本文就是自己看,如果您不小心进到了这里,请看源处,是这个作者翻译的:http://blog.sae.sina.com.cn/archives/4157讨论jQuery和javascript性能的文章并不罕见。然而,本文我计划总结一些速度方面的技巧和我本人的一些建议,来提升你的jQuery和javas... 阅读全文
摘要:
1.js方案test2.jQuery方案$('#AgencyNew_fill_account').attr("checked", false);$('#AgencyNew_fill_account').attr("checked", true); 阅读全文
摘要:
网页可见区域宽: document.body.clientWidth;网页可见区域高: document.body.clientHeight;网页可见区域宽: document.body.offsetWidth(包括边线的宽);网页可见区域高: document.body.offsetHeight(... 阅读全文
摘要:
1.定义变量的时候,需要初始化,这是一种习惯var box=null; //对象的初始化一般用nullvar box={ //以后再声明 age:10}var box=''; //创建一个字符串对象,一开始不知道赋值什么的时候,就创建为空字符串var box=0; //数值初始化,一般为0va... 阅读全文