$(document).ready(function () { }); window.onload=方法;页面加载完触发
var iWidth = 300; //窗口宽度 var iHeight = 200; //窗口高度 var iTop = (window.screen.height - iHeight) / 2; var iLeft = (window.screen.width - iWidth) / 2; window.open(URL, ‘newwindow‘, ‘height=300,width=300,top=‘ + iTop + ‘,left=‘ + iLeft + ‘,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no‘) 修改页面title document.title = "我的粉丝";
分割 split() 参数:字符 var Str="2,2,3,5,6,6"; var Array= Str.split(‘,‘); indexof 查询字符或字符串在字符串的位置,不存在则为-1 var str="Hello world!" document.write(str.indexOf("Hello") + "<br />") document.write(str.indexOf("World") + "<br />") document.write(str.indexOf("world")) 0 -1 6
jq获取父级元素 parent()
Js childNodes 所有子节点 parentNode 父节点
js jq 一些属性