首页 > 代码库 > JS 跳转页面 在新的选项卡打开

JS 跳转页面 在新的选项卡打开

function going(url) {                  var a = $("<a href=http://www.mamicode.com/‘" + url + "‘ target=‘_blank‘>Apple</a>").get(0);                  var e = document.createEvent(‘MouseEvents‘);                  e.initEvent(‘click‘, true, true);                  a.dispatchEvent(e);                  console.log(‘event has been changed‘);              }

 

JS 跳转页面 在新的选项卡打开