码迷,mamicode.com
首页 > Web开发 > 详细

js jq 一些属性

时间:2014-07-31 12:35:46      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:des   io   cti   ar   new   window   res   js   

$(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 一些属性,布布扣,bubuko.com

js jq 一些属性

标签:des   io   cti   ar   new   window   res   js   

原文地址:http://www.cnblogs.com/huweijun/p/3880245.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!