gpt4 book ai didi

javascript - html javascript 输出和转换器错误

转载 作者:行者123 更新时间:2023-12-03 12:18:53 25 4
gpt4 key购买 nike

转换器工作正常,它会查找与输入的匹配项,如果找到,则会将其转换为新值。

我遇到的问题是我可以使用 document.write(userInput); 输出新值

但我不知道如何格式化或添加 html 和文本到输出。救命!

<!DOCTYPE html>
<html>
<body>
<h1>Value Converter</h1>

<input type="text" id="userInput"=>Enter the Value</input>
<button onclick="test()">Submit</button>
<script>
function test()
{
var userInput = document.getElementById("userInput").value;
if(userInput == "xxxx") {
userInput="yyyy";
}
else if(userInput == "yyyy") {
userInput="zzzz";
}
else {
userInput="Not Found";
}
document.write("<br /><br /><b> The equivalent value is: </b>") + (userInput) + ("< br /><br /><a href="/test.html"><b>Click here to Start Over</b></a>");
}

// Need to fix the "reset" to go back to restart the program

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

最佳答案

改变

document.write("<br /><br /><b> The equivalent value is: </b>") + (userInput) + ("< br /><br /><a href="/test.html"><b>Click here to Start Over</b></a>");  

对于

document.write("<br /><br /><b> The equivalent value is: </b>" + userInput + "< br /><br /><a href="/test.html"><b>Click here to Start Over</b></a>");  

关于javascript - html javascript 输出和转换器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24537696/

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