标签:
1. js 对象,先有的起作用。CSS属性,后有的起作用。
2. 方法中使用submit提交表单,如果提交后面还有代码需要执行,不能保证顺序。例如,提交后关闭页面,很可能会在提交前关闭页面,导致提交失败。
3. 提交表单:jQuery("form").submit();
4. title 鼠标滑过时显示的文字提示。alt 此属性的实质作用是图片在无法正确显示的时候起到文本替代的作用,某些浏览器下也可以实现 鼠标放上去显示内容的功能。
5. js字符串截取函数: slice()、substring()、substr()
6. js去空格函数:trim()
7. 获取选中radio的值: $("input[name=‘aaa‘]:checked").val()
8. 取字符串的长度: jQuery("#contextPath").val().length
9. 获取当前时间:var myDate = new Date();
10. 手型:cursor:pointer;
11. CSS 样式中宽高除了值为0以外,都需要加单位px
12. 图片宽高:<img src="/i/mouse.jpg" height="200" width="200" />
13. 设置CSS属性: $(".btn1").click(function(){ $("p").css("color","red"); });
14. 确认标签:var r=confirm("Press a button") if (r==true){}
标签:
原文地址:http://www.cnblogs.com/Jtianlin/p/4711872.html