@
can @
Hyperion 朱一看了源代码了,是很简单。跟朱一想的一样,没有考虑用的a标签。然后return false的方法兼容noscript。当然local.href=''或window.open都没考虑。
但是。感觉朱一还没没办法解决,
朱一把源码贴在这里:
$("a[target='_blank']").live('click', function(event) {
if (event.button == 0) {
event.preventDefault();
chrome.extension.sendRequest({action: "open_in_new_tab", url: this.href, click: 0}, function(response){});
}
});
$("a[target='_new']").live('click', function(event) {
if (event.button == 0) {
event.preventDefault();
chrome.extension.sendRequest({action: "open_in_new_tab", url: this.href, click: 0}, function(response){});
}
});
他是重写了所有的a标签。所以。。。