如何在<a href="">中插入JavaScript变量

时间:2019-09-16 05:10:07

标签: javascript html

I have a javascript variable BASE_URL='http://localhost/BKTHP_WEB_NEW/';

现在我想将其插入

something like <a href="BASE_URL+\view">

2 个答案:

答案 0 :(得分:2)

使用setAttribute将变量设置为href的值

var BASE_URL='http://localhost/BKTHP_WEB_NEW/';
document.querySelector('a').setAttribute('href',BASE_URL)
<a href="">Link

答案 1 :(得分:1)

您可以在标签上使用setAttribute,并动态设置href

<a id="replace" href="">YOUR LINK</a>
const BASE_URL='http://localhost/BKTHP_WEB_NEW/';
document.querySelector('#replace').setAttribute('href', BASE_URL);