html中href如何引用变量?

2024-11-12 21:08:49
推荐回答(4个)
回答1:

这个用js来实现比较好,直接修改a标签的href属性
例如:
123
-----------------------------------------
var newHref = 你要的值
$('#aa').attr("href",newHref )

回答2:

location.href = 'http://v.t.sina.com.cn/share/share.php?title='<%=encodeURIComponent(document.title)%>

回答3:

<%= encodeURIComponent(document.title) %>

回答4:

location.href = 'http://v.t.sina.com.cn/share/share.php?title='+encodeURIComponent(document.title);