获取iframe内页面的window对象
设有html文件0.html1
<html><body><iframe id="f1" src="1.html"></iframe></body></html>
在0.html中获得1.html的window对象:1
2
3
4
5
6x=window.frames["f1"].contentWindow;
y=document.getElementById('f1').contentWindow;
z=jQuery('#f1')[0].contentWindow;
x==y==z
#获得父window对象:
x.parent;
JSON对象与字符串互转
1 | str = '{"name":"aaa","age":33}'; |
jquery选择器对象与dom对象互转
1 | obj1 = document.getElementById('myid'); |
获得button所在form的id
1 | document.getElementById('b1').form.id; |
javascript获取html DOM的父、子、相邻节点
1 | document.getElementById(id);//通过节点id属性获得 |
js添加、删除html元素
1 | //为body增加div元素 |
获得当前页的url
1 | window.location.href;//获取url |