gpt4 book ai didi

javascript - 离开页面时提示用户

转载 作者:行者123 更新时间:2023-11-28 19:47:57 25 4
gpt4 key购买 nike

在我的页面上,我有一个名为 cbOrderSpareCustomer 的组合框。默认情况下,所选索引设置为 0。

当用户更改它时,我认为该页面包含数据,当用户决定离开该页面时,我想提示他让他知道数据将丢失。

我看过很多关于此的帖子,但我对 javascript 很陌生,所以我需要一些帮助。

我知道我必须使用:

<script>
window.onbeforeunload= function() { return "Custom message here"; };
</script>

但是我如何使其与组合框一起使用?

if cbOrderSpareCustomer.selectedIndex > 0 then提示否则继续。

我还想阻止它在每次回发时显示提示。

我想看一个例子。

最佳答案

您在客户端获取下拉列表,并检查索引,您的代码可能如下:

<script>
window.onbeforeunload= function()
{
if(document.getElementById('<%=cbOrderSpareCustomer.ClientID%>').selectedIndex > 0)
{
return "Custom message here";
}
else
{
return true;
}
};
</script>

关于javascript - 离开页面时提示用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23958772/

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