gpt4 book ai didi

javascript:使用replace()替换html中的文本

转载 作者:行者123 更新时间:2023-12-02 18:07:44 29 4
gpt4 key购买 nike

我正在尝试使用replace()函数来调整上面的代码以显示文本:这就是全部吗?!同时保留添加在innerHTML中的文本

 <p id="str">Click the button for a surprise.</p>
<form action="#">
<input type="submit" onclick="myFunction()" value="Enter">
</form>

function myFunction(){
document.getElementById('str').innerHTML = "Is this all there is?";
str.replace(str, "Is this all?!")
}

最佳答案

你可以试试这个

<p id="str">Click the button for a surprise.</p>
<form action="#">
<input type="submit" onclick="myFunction()" value="Enter">
</form>


function myFunction(){
var str = document.getElementById('str');
str.innerHTML = "Is this all there is? <moretext>";
str.innerHTML.replace("<moretext>", "Is this all?!");
}

关于javascript:使用replace()替换html中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19957700/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com