在html上使用javascript变量

前端之家收集整理的这篇文章主要介绍了在html上使用javascript变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个javascript代码
<script ="text/javascript">
    var newUrl=window.location.href;
    var pathArray="";
    pathArray=newUrl.substr(newUrl.lastIndexOf("?")+1);
</script>

我想将pathArray变量用作标记上href的一部分

这是我的HTML代码

<a href="game.html?"+pathArray>
  <img src="img/RestartButton.png" style="position:absolute;
  left:80px; top:220px">
</a>

但似乎它不读取变量的值,而是它的名称.

解决方法

您正在将javascript混合到HTML中.

我相信你的pathArray变量也不会包含你期望的内容.

在脚本标记中尝试此操作:

var gamePath = "game.html?" + window.location.search.replace( "?","" );
document.getElementById("gameAnchor").setAttribute("href",gamePath);

并为您的锚点添加一个ID:

<a href="#" id='gameAnchor'>

javascript将从当前url获取所有GET参数,然后使用id为gameAnchor替换元素中的href属性,并将game.html与url中的GET参数连接.

原文链接:https://www.f2er.com/html/231752.html

猜你在找的HTML相关文章