如何使用 javascript 或 rich:jQuery 检测 h:selectOneRadio 中单击了哪个单选按钮?

发布于 2024-12-10 06:18:40 字数 677 浏览 0 评论 0 原文

如何使用 javascript 或 jquery 检测 h:selectOneRadio 中单击了哪个单选按钮?

我已经可以使用托管 bean 的 valueChangeListener 和 a4j:support 来做到这一点。 我想要的不是去服务器而只是为了性能而使用jquery,因为有时 服务器响应返回之前需要一段时间。

我想要的是,当单击单选按钮时,它将禁用我的一些组件。

这是代码。

<h:selectOneRadio id="isPrivate" valueChangeListener="#{someBean.changeRadio}">
                    <a4j:support event="onchange" reRender="sp" />            
                    <f:selectItem id="isPrivate0" itemLabel="No" itemValue="false"/>
                    <f:selectItem id="isPrivate1" itemLabel="Yes" itemValue="true"/>         
                </h:selectOneRadio>

提前致谢。 :)

How to detect which radio button was clicked in h:selectOneRadio using javascript or maybe jquery?

I can already do this using valueChangeListener and a4j:support from managed bean.
What i want is not to go to the server and just use jquery just for performance, because sometimes
it takes time before the server response comes back.

What i want is when a radio button was clicked it will disable some of my components.

Here is the code.

<h:selectOneRadio id="isPrivate" valueChangeListener="#{someBean.changeRadio}">
                    <a4j:support event="onchange" reRender="sp" />            
                    <f:selectItem id="isPrivate0" itemLabel="No" itemValue="false"/>
                    <f:selectItem id="isPrivate1" itemLabel="Yes" itemValue="true"/>         
                </h:selectOneRadio>

Thanks in advanced.
:)

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

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

发布评论

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

评论(3

夏日浅笑〃 2024-12-17 06:18:40

最好将更改事件附加到文档加载时列表中的每个单选按钮。

$(function()
{
    $('table[id$="isPrivate"] input:radio',this).each(function (){ 
                $(this).change(function (event) { 

                //do disabling here
                //$(this).val() - will return the value of radiobutton
                });
    }); 
});

It'd better attach change event to each radio button in the list on document's onload.

$(function()
{
    $('table[id$="isPrivate"] input:radio',this).each(function (){ 
                $(this).change(function (event) { 

                //do disabling here
                //$(this).val() - will return the value of radiobutton
                });
    }); 
});
浮萍、无处依 2024-12-17 06:18:40

使用 jQuery:

jQuery('input[name=isPrivate]:checked').val()

示例:

if (jQuery('input[name=isPrivate]:checked').val() == "true") {
    //yes
}

with jQuery:

jQuery('input[name=isPrivate]:checked').val()

example:

if (jQuery('input[name=isPrivate]:checked').val() == "true") {
    //yes
}
脱离于你 2024-12-17 06:18:40

您必须找到 JSF 生成的 元素,并使用 jQuery 的 change 事件。 href="http://api.jquery.com/change/" rel="nofollow">.change()

You'll have to find the <input type='radio' …/> elements JSF generates, and listen to the change event using, say, jQuery's .change().

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