1
sneezry 2014-04-10 11:18:20 +08:00
所有的页面?还是既定的页面?用个扩展把a标签的所有target属性改了。
|
4
otakustay 2014-04-10 11:39:39 +08:00
javascript:document.body.addEventListener('mousedown', function (e) { console.log(1); if (e.target.nodeName === 'A') { e.target.target = '_self'; } })
|