如何从表单提交上的单选按钮获取值

发布于 2024-09-16 22:10:41 字数 811 浏览 7 评论 0原文

我有两个单选按钮:

<input dojoAttachPoint="sensorSwipe" id="sensorSwipe" type="radio" 
                            dojoType="dijit.form.RadioButton" name="Sensor" checked /> 
                        <input dojoAttachPoint="sensorContinuous" id="sensorContinuous"  type="radio" 
                            dojoType="dijit.form.RadioButton" name="Sensor" /> 

...我正在使用 dojo xhrpost 调用以表单形式提交:

dojo.xhrPost({
        url: baseUrl + path,
        form: form,
        timeout: 60000,
        load: function(result) { PostSuccess(result, path, callbackFunction); },
        error: function(error, args) { AjaxError(error, args, path, request, callbackFunction); }
    });

问题是,在提交表单时,它会发送值为“on”的“Sensor”属性,无论哪个两个单选按钮中的一个被选中。我如何知道选择了哪个单选按钮?

I have two radio buttons:

<input dojoAttachPoint="sensorSwipe" id="sensorSwipe" type="radio" 
                            dojoType="dijit.form.RadioButton" name="Sensor" checked /> 
                        <input dojoAttachPoint="sensorContinuous" id="sensorContinuous"  type="radio" 
                            dojoType="dijit.form.RadioButton" name="Sensor" /> 

...that I'm submitting in a form using an dojo xhrpost call:

dojo.xhrPost({
        url: baseUrl + path,
        form: form,
        timeout: 60000,
        load: function(result) { PostSuccess(result, path, callbackFunction); },
        error: function(error, args) { AjaxError(error, args, path, request, callbackFunction); }
    });

The issue is that when submitting the form, it sends a "Sensor" property with a value of "on", regardless of which of the two radio buttons is selected. How can I tell which radio button was selected?

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

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

发布评论

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

评论(1

早茶月光 2024-09-23 22:10:41

您应该将 value 属性添加到 来指定值。

You should add value attribute to the <input> to specify the value.

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