ASP.NET 中的警报消息

发布于 2024-07-17 10:13:46 字数 401 浏览 1 评论 0原文

我是 ASP.NET 编程新手。 如果未单击 RadioButton,我需要显示一条消息。 我已经为 onclick 事件编写了 JavaScript 来处理单选。

我的代码:

if(rbTest.Checked == true)
{
        //my code
}
else
{
    string message = "Please select case to download";
    lnkbtnDownload.Attributes.Add("onclick", "alert('" + message + "');return false;");
}

即使我选择了单选按钮,它也会继续显示警报消息。 为什么?

I am new to ASP.NET programming. I need to display a message if RadioButton is not clicked. I have already written JavaScript for the onclick event to handle single selection.

My code:

if(rbTest.Checked == true)
{
        //my code
}
else
{
    string message = "Please select case to download";
    lnkbtnDownload.Attributes.Add("onclick", "alert('" + message + "');return false;");
}

This keeps on displaying alert message even if I have selected a radio button. Why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

自在安然 2024-07-24 10:13:46

您必须检查 lnkbtnDownload 的 onclick 处理程序中是否单击了单选按钮。

lnkbtnDownload.Attributes.Add("onclick","if(!document.getElementById('rbTest').checked))alert('message')");

You have to check whether the radio button is clicked or not inside the onclick handler for the lnkbtnDownload.

lnkbtnDownload.Attributes.Add("onclick","if(!document.getElementById('rbTest').checked))alert('message')");
虫児飞 2024-07-24 10:13:46

您需要了解服务器端代码和客户端代码之间的区别。 您的代码是用 C# 编写的,在服务器上运行。 情况:

我假设正在发生以下 您的页面首次呈现,并且用户没有选择相关的单选按钮。 然后他/她提交页面(可能通过 LinkBut​​ton)。

b. 您的页面将提交,您粘贴的代码将在服务器上运行。 您检查单选按钮是否被选中。 如果没有,您可以向 LinkBut​​ton 添加一个属性,以便当单击 LinkBut​​ton 时,它将引发警报。

C。 您的页面在回发后呈现,并将新属性添加到 LinkBut​​ton。

d. 单击 LinkBut​​ton 后,您会收到一条包含该消息的警报。 由于您已将其设置为返回 false,因此该页面将不会再次提交,并将继续向您显示警报。

你看到这里发生了什么吗? 您的警报条件需要在客户端本身进行检查。 @Phoenix 提供的代码片段应该是一个很好的起点。

You need to understand the difference between server-side code and client-side code. Your code is written in C# which runs on the server. Here is what I assume is happening:

a. Your page renders for the first time and the user does not choose the relevant radiobutton. He/she then submits the page (possibly via the LinkButton).

b. Your page submits and the code you pasted runs on the server. You check if the radiobutton is checked. If not, you add an attribute to a LinkButton so that when the LinkButton is clicked, it will raise an alert.

c. Your page renders after postback with the new attribute added to the LinkButton.

d. On the click of the LinkButton, you get an alert with the message. Since you have set it to return false, the page will not submit again and will keep on showing you the alert.

Do you see what's happening here? Your alert condition needs to be checked on the client itself. The snippet provided by @Phoenix should be a good starting point.

雨的味道风的声音 2024-07-24 10:13:46

这相对难看,但可以解决问题:

<script>
  var rbSelected = false;
</script>

<form onsubmit="if (!rbSelected) { alert('You must select something!";return false}">
 <input type="radio" name="rbTest" onclick="rbSelected=true" value=1>a
 <input type="radio" name="rbTest" onclick="rbSelected=true" value=2>b
 <input type="radio" name="rbTest" onclick="rbSelected=true" value=3>c
 <input type="submit value="Submit">
</form>

如果您有多个单选按钮(我希望您这样做),那么如果没有所有这些额外的循环逻辑等,您真的无法使用 getElementById...这可以避免循环。

请参阅示例:http://jsbin.com/edoke

This is relatively ugly but would do the trick:

<script>
  var rbSelected = false;
</script>

<form onsubmit="if (!rbSelected) { alert('You must select something!";return false}">
 <input type="radio" name="rbTest" onclick="rbSelected=true" value=1>a
 <input type="radio" name="rbTest" onclick="rbSelected=true" value=2>b
 <input type="radio" name="rbTest" onclick="rbSelected=true" value=3>c
 <input type="submit value="Submit">
</form>

If you've got more than one radio button (which I'm hoping you do), then you really can't use getElementById without all this extra looping logic etc... This avoids the looping.

See example: http://jsbin.com/edoke

王权女流氓 2024-07-24 10:13:46

使用

var r = documet.getElementById("rbTest")

然后与 r[0].checked

使用索引进行比较,因为 radiobutton r 可以是一个数组

use

var r = documet.getElementById("rbTest")

and then compare with r[0].checked

use index, because radiobutton r can be an array

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文