Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我写了一个 chrome 扩展。当用户单击它而不在 onclick 中使用 target=_blank 时,我希望所有 url 在新选项卡中打开,因为这对我来说很乏味。
任何建议将不胜感激。
提前致谢。
$(document).click(function(e) { // Check for button click if (e.button == 0) { // left click window.open('http://google.com'); } else if (e.button == 3){//right click window.open('http://yahoo.com'); } });
希望这可以帮助你