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