摘要:
query取得iframe中元素的几种方法在iframe子页面获取父页面元素代码如下:$('#objId', parent.document);// 搞定...在父页面 获取iframe子页面的元素代码如下:$("#objid",document.frames('iframename').document)显示iframe中body元素的内容。$(document.getElementById('iframeId').contentWindow.document.body).html()$("#testId" 阅读全文
摘要:
"window.location.href"、"location.href"是本页面跳转"parent.location.href"是上一层页面跳转"top.location.href"是最外层的页面跳转举例说明:如果A,B,C,D都是jsp,D是C的iframe,C是B的iframe,B是A的iframe,如果D中js这样写 "window.location.href"、"location.href":D页面跳转"parent.location.href" 阅读全文
摘要:
转自:http://blog.csdn.net/fxh_hua/article/details/4433682 方便自己找1.创建链接<BODY><script language="JavaScript">var o = document.body;//创建链接function createA(url,text){var a = document.createElement("a");a.href = url;a.innerHTML = text;a.style.color = "red";o.appendCh 阅读全文