我想在JavaScript中使用href
更改CSS window.open
。
<a class="cssButton" id="Launch" target="_blank" data-baseref="Example/index.html?" href="Example/index.html?" >Launch Example</a>
改为
window.open(/* url goes here */);
上面有css href中的所有属性。
答案 0 :(得分:0)
您可以通过两个步骤完成您想要的任务:
1)将<a>
元素的目标更改为'new-win'
或您想要的任何名称。
<a id="Launch" target="new-win" href="Example/index.html?">Launch Example</a>
2)为click
元素的<a>
事件创建一个事件侦听器,其中使用window.open
。作为window.open
的参数,传递href
元素的target
和<a>
。
document.getElementById("Launch").addEventListener("click", function () {
window.open(this.href, this.target);
});