gpt4 book ai didi

javascript - 使用 javascript 获取输入值,并根据其值使用 javascript 在其他地方插入值

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

我在页面底部加载了此内容

if((document.getElementById('pcc').value)==="1") {
var $postcontrr = "hello";
document.write($postcontrr);
}
else {document.write ('this is messed up');}

在我的表单中,我有一个带有 id=pcc 的字段,所以我阅读它的方式是,如果带有 pcc id 的字段的值为 1,则变量 $postcontrr 将是 Hello,然后 document.write 应该打印 Hello。但我什么也没得到。甚至 else 语句也不会打印。任何指示将不胜感激。

最佳答案

得到预期的结果。这里没有错误。请在

中查看

   if ((document.getElementById('pcc').value) === "1") {
var $postcontrr = "hello";
document.write($postcontrr);
} else {
document.write('this is messed up');
}
<html>
<input id="pcc" value="1" type="text" />
</html>

关于javascript - 使用 javascript 获取输入值,并根据其值使用 javascript 在其他地方插入值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36444967/

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