如何在JavaScript中使用window.open更改css href?

时间:2018-02-10 02:19:19

标签: javascript html css

我想在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中的所有属性。

1 个答案:

答案 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);
});