概述
复制代码 代码如下:
his.findElementById = function (identifier, frame) {
if (!frame) {
frame = window;
}
var element = frame.document.getElementById(identifier);
if (element && element.getAttribute('id') === identifier) {
return element;
}
// else if (browserVersion.isIE || browserVersion.isOpera) {
// // SEL-484
// var xpath = '/descendant::*[@id=' + identifier.quoteForXPath() + ']';
// return this
// .findElementByXPath(xpath);
// }
else {
// MOD 2011-12-9 有的新窗口中frame与老窗口相同。一般是先操作新窗口。从后向前找
if (frame.frames && frame.frames.length > 0) {
for (var i = frame.frames.length - 1; i >= 0; i--) {
element = this.findElementById(identifier, frame.frames[i]); //frames[i].document.getElementById(identifier);
if (element && element.getAttribute("id") === identifier) {
return element;
}
}
}
}
return null;
};
最后
以上就是执着台灯为你收集整理的JS.findElementById()使用介绍的全部内容,希望文章能够帮你解决JS.findElementById()使用介绍所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复