作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想让 uinput
出现在 h1
标签中的 Hello
一词之后。它应该显示他们在上一页中添加的用户名。
<body>
<div class="Header_2">
<div class="Head-Text-Box">
<script>
var userinput = localStorage.getItem("uinput");
</script>
<h1>Hello uinput <br> please choose from the options below</h1>
</div>
</div>
</body>
最佳答案
获取标题标签的初始innerHTML,并将innerHTML替换为您的变量值:
<div class="Header_2">
<div class="Head-Text-Box">
<h1>Hello {uinput} <br> please choose from the options below.</h1>
<script>
var userinput = "Sixpathsage6";//localStorage.getItem("uinput");
var h = document.querySelector("h1");
h.innerHTML = h.innerHTML.replace("{uinput}",userinput);
</script>
</div>
</div>
使用正则表达式替换多个{uinput}
:
h.innerHTML.replace(/\{uinput\}/g, userinput);
关于javascript - 我如何在这个 h1 标签中显示 uinput ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59221795/
我是一名优秀的程序员,十分优秀!