gpt4 book ai didi

javascript - 如何在 IE11 中添加未定义或引用的属性

转载 作者:太空宇宙 更新时间:2023-11-04 03:24:47 24 4
gpt4 key购买 nike

//如果返回值未定义,那么它一定是“取消”。请提供有关此问题的任何有用信息。 当我们尝试在返回流中的 IE11 浏览器中启动 jsp 页面时,会出现此问题。

    //if the return value is undefined, then it must be "cancel"
if (typeof returnValue == "null") {
document.getElementById("user").value = "cancel";
} else {
//set value of various form elements, based on returnValue
}

postCommand(null, "redirect", "serversideredirect", "", "");
}

</script>

最佳答案

你正在尝试执行...

 document.getElementById("userAction").value = "cancelled";

当Body中的id是... lblAction

<b><label style="HEIGHT:25px; FONT-SIZE:12pt" id="lblAction"></label></b>

两者应该匹配。

更新:

document.getElementById("userAction").value = "cancelled";

...应该成为

document.getElementById("lblAction").value = "cancelled";'

关于javascript - 如何在 IE11 中添加未定义或引用的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27252579/

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