如何在div中使用替换?

发布于 2024-12-09 05:47:12 字数 328 浏览 0 评论 0原文

我有一个问题,如何在div标签中使用javascript的replace()?我这样尝试过:

<html>
<body>
<div id="ahoj">ahoj</div>

<script type="text/javascript">

document.write(document.getElementById("ahoj").replace("ahoj","hola"));

</script>
</body>
</html>

...但它不起作用..有什么想法吗?

I have got one question, how to use javascript replace() in div tag? I tried it like that:

<html>
<body>
<div id="ahoj">ahoj</div>

<script type="text/javascript">

document.write(document.getElementById("ahoj").replace("ahoj","hola"));

</script>
</body>
</html>

...but it is not working.. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

花落人断肠 2024-12-16 05:47:12

document.getElementById("ahoj") 是一个 HTMLElement 对象。使用 document.getElementById("ahoj").innerHTML

document.write(document.getElementById("ahoj").replace(/ahoj/g,"hola"));

或者,如果您不需要新元素:

document.getElementById("ahoj").innerHTML = document.getElementById("ahoj").innerHTML.replace(/ahoj/g,"hola"); 

替换字符串并将innerHTML 设置为新字符串。 示例

document.getElementById("ahoj") is an HTMLElement object. Use document.getElementById("ahoj").innerHTML

document.write(document.getElementById("ahoj").replace(/ahoj/g,"hola"));

Or if you don't want a new element:

document.getElementById("ahoj").innerHTML = document.getElementById("ahoj").innerHTML.replace(/ahoj/g,"hola"); 

Replace the string and set the innerHTML to the new string. Example

深居我梦 2024-12-16 05:47:12

我认为您需要使用innerHTML。

document.write(document.getElementById("ahoj").innerHTML.replace("ahoj", "hola"));

I think innerHTML is what you'll need to use.

document.write(document.getElementById("ahoj").innerHTML.replace("ahoj", "hola"));
谈情不如逗狗 2024-12-16 05:47:12
<script type="text/javascript">
    var el = document.getElementById("ahoj");
    el.innerHTML = el.innerHTML.replace(/ahoj/g,”hola”);
</script>
<script type="text/javascript">
    var el = document.getElementById("ahoj");
    el.innerHTML = el.innerHTML.replace(/ahoj/g,”hola”);
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文