I have a javascript variable BASE_URL='http://localhost/BKTHP_WEB_NEW/';
现在我想将其插入
something like <a href="BASE_URL+\view">
答案 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);