例如:
<a href="#" id="aa">123</a>
-----------------------------------------
var newHref = 你要的值
$('#aa').attr("href",newHref )
<a href="#" onclick="location.href=url_search"> //这样会是当前页面打开可以给a一个id
<a href="#" id="url">
<script>
document.getElementById("url").href = url_search
</script>
href后边的属性是一个字符串,格式化为字符串不就可以了?如:window.location.href=""+text+".html"
也就是说,text变量的内容是a时,则会打开a.html,当然,如果你的变量中存在的就是类似于text = "a.html"的话,更好办了
location.href = text就可以了!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)