在写jquery时,时常用到的js语句
window.location.href="http://www.baidu.com" 页面跳转时经常用到
window.open("http://www.baidu.com","_blank"); 打开新页面用到
setTimeout("function()",1000) 指定毫秒数后执行方法
window.onload=function(); 加载完成后调用方法也可用于各种流加载完成后
encodeInp(password);最简单的加密(也最容易破解)方式,返回一串数字。
/[^\d]/.test(uName) 基础格式: /正则表达式/.test(uName) 用来正则判断值是否满足条件的,是为true
document.body.scrollHeight; 获得window的总高度
document.getElementById("id").height 获得某个id标签的某个值
parent.document.getElementById("id").height 获得某个父文本的某个id的某个值
document.getElementById("iframe").contentWindow.document.body.scrollHeight 综合起来用,多用于iframe
window.top.document.getElementById("more").innerHTML 获得顶层窗口more的div并且加入html代码
程序宅男