我需要做什么
我在HTML页面的正文中显示带有javascript的iframe。
有类似document.write('<iframe ...></iframe'>);
在这个iframe中,我的javascript函数在父文档的正文中搜索关键字,并将其替换为父文档中的html链接<a href="#">keyword</a>
。
我尝试了什么
当脚本在文档中而不在iframe中处理父文档时,那些工具就像魅力一样。
我的问题/疑问
<a
href="#">keyword</a>
)。Usualy我使用了一些jQuery但是在这个项目中我只需要使用一些没有任何库的javascript。
有什么想法可以帮助我吗? (我不希望任何人“编写我的代码”,我只想要一些建议来自己制作)
P.S。 1:我使用的是Chrome,但我想让它在每个浏览器中都能正常运行。
P.S。 2:英语不是我的第一语言,所以如果你不理解某些内容,请不要犹豫向我提出,我会尝试更好地解释它。
修改2
第一个脚本现在适用于HTML,所以问题1已经解决,但是如果只更换一次,即使关键字重复多次,如何进行替换? (问题2)
答案 0 :(得分:0)
在xiaoyi的帮助下,我找到了一些解决方案:
我认为它可以被优化,但对我来说它就像一个魅力,我和你分享,如果它可以帮助任何人(不要忘记改变文件的目标,这里“父母”) :
(function(){
// don't replace text within these tags
var skipTags = { 'a': 1, 'style': 1, 'script': 1, 'iframe': 1, 'meta':1, 'title':1, 'img':1, 'h':1 };
// find text nodes to apply replFn to
function findKW( el, term, replFn )
{
var child, tag,found=false;
for (var i = 0;i<=el.childNodes.length - 1 && !found; i++)
{
child = el.childNodes[i];
if (child.nodeType == 1)
{ // ELEMENT_NODE
tag = child.nodeName.toLowerCase();
if (!(tag in skipTags))
{
findKW(child, term, replFn);
}
}
else if (child.nodeType == 3)
{ // TEXT_NODE
found=replaceKW(child, term, replFn); // if found=true, we stop the loop
}
}
};
// replace terms in text according to replFn
function replaceKW( text, term, replFn)
{
var match,
matches = [],found=false;
while (match = term.exec(text.data))
{
matches.push(match);
}
for (var i = 0;i<=matches.length - 1 && !found; i++)
{
match = matches[i];
// cut out the text node to replace
text.splitText(match.index);
text.nextSibling.splitText(match[1].length);
text.parentNode.replaceChild(replFn(match[1]), text.nextSibling);
if(matches[i])found=true;// To stop the loop
}
return found;
};
// First search/replace
var replTerm = 'keyword';
findKW(
parent.document.body,
new RegExp('\\b(' + replTerm + ')\\b', 'gi'),
function (match)
{
var link = parent.document.createElement('a');
link.href = 'http://www.okisurf.com/#q=' + replTerm;
link.target = '_blank';
link.innerHTML = match;
return link;
}
);
// A second search/replace
var replTerm = 'word';
findKW(
parent.document.body,
new RegExp('\\b(' + replTerm + ')\\b', 'gi'),
function (match)
{
var link = parent.document.createElement('a');
link.href = 'http://www.okisurf.com/#q=' + replTerm;
link.target = '_blank';
link.innerHTML = match;
return link;
}
);
// Other search/replace
// ...
}());
我还发现第二个解决方案不适用于Internet Explorer女巫不接受createTreeWalker()
DOM功能