如何使用favelet或脚本注入器获取随机网站页面上单击元素的innerHTML?
例如,点击&#34; Ask Question&#34;该页面将返回以<div class="nav mainnavs " style="">
<ul style="">
<li style="">
开头的内容。
我尝试从slayeroffice.com编辑一个favelet,其最初目的是移除所选元素的子项,但它似乎不起作用。
javascript:
var b = new Array();
var c= 1;
var d;
document.onkeydown = ck;
el = document.getElementsByTagName('*');
for (i = 0; i < el.length; i++)
{
if (el[i].tagName.search(/(HTML|BODY)/i) == -1)
{
if (el[i].title) el[i].oldTitle = el[i].title;
el[i].title = el[i].innerHTML;
d=String(el[i].innerHTML);
el[i].onclick = function(e)
{
t = this;
if (window.event) e = window.event;
if ((t == e.target) || (window.event)) alert(d);
if (window.opera) e.stopPropagation();
return false;
};
el[i].onmouseover = function()
{
if (!c) return;
c = 0;
t = this;
b[t] = t.style.backgroundColor;
t.style.background = '#DADADA';
};
void(
el[i].onmouseout = function()
{
t = this;
t.style.backgroundColor = b[t];
c = 1;
});
}
}
function ck(e)
{
k = window.event ? window.event.keyCode : e.keyCode;
if (k == 27)
{
for (i = 0; i < el.length; i++) {
if (el[i].tagName.search(/(HTML|BODY)/i) == -1)
{
el[i].oldTitle ? el[i].title = el[i].oldTitle : el[i].removeAttribute('title');
el[i].onclick = null;
el[i].onmouseover = null;
el[i].onmouseout = null;
el[i].style.backgroundColor = b[t];
}
}
}
}
有没有解决方案?
答案 0 :(得分:12)
您可以将事件附加到文档onclick处理程序。无需遍历页面上的每个元素。点击会冒泡到它......
document.onclick = function(event) {
var target = event.target || event.srcElement;
alert ( target.innerHTML );
};
但是我建议使用更好的方法来附加事件处理程序而不是'=',因为它会覆盖任何以前定义的对页面操作至关重要的事件。
我之前使用过此片段,以便在没有jQuery的情况下更好地附加事件......
var bindEvent = function(elem ,evt,cb) {
//see if the addEventListener function exists on the element
if ( elem.addEventListener ) {
elem.addEventListener(evt,cb,false);
//if addEventListener is not present, see if this is an IE browser
} else if ( elem.attachEvent ) {
//prefix the event type with "on"
elem.attachEvent('on' + evt, function(){
/* use call to simulate addEventListener
* This will make sure the callback gets the element for "this"
* and will ensure the function's first argument is the event object
*/
cb.call(event.srcElement,event);
});
}
}
你只需要打电话......
bindEvent(document,'click', function(event) {
var target = event.target || event.srcElement;
alert ( target.innerHTML );
});
答案 1 :(得分:2)
for循环中的i
范围会有问题。
i
将等于el.length
。
但是为什么要使用变量,当你可以阅读它
更改
if ((t == e.target) || (window.event)) alert(d);
到
if ((t == e.target) || (window.event)) {
alert(this.innerHTML);
}
你也不应该在window.event上检查srcElement吗?