jQuery Radio Buttons无法正常切换

时间:2011-11-28 18:07:42

标签: jquery jquery-ui radio-button jquery-ui-button

问题在于:我在页面加载时动态创建X单选按钮列表,一旦创建并显示列表,我只希望用户能够一次选择1(根据正常的无线电组)纽扣)。但是,用户可以选择多个选项,就像单选按钮单独运行而不是一组单选按钮一样。

这是我在文档就绪时调用的代码:

    // On document ready...
    $(document).ready(function() {

        // add click events to any inputs to the radio btn div, setup jQuery UI radio buttonset...
        $("#radioX").on("click", "input", displayProductDetails).buttonset();

        // get all the products
        $.get(
                "php/getProducts.php",
                function(responseData){

                    // set the products array
                    products = responseData;

                    // setup the radio buttons for the products returned
                    setupProductRadioButtons(products);
                },
                "json"
        );
    });

以下是创建单选按钮的代码:

    // method used to setup the list of selectable products based on the list returned
    // from the server
    function setupProductRadioButtons(products) {

        // create a radio button for each element in the products array
        jQuery.each(products, function(index) {

            // get the product from the array using the current index
            var product = products[index];

            // create a new radio button using the product name
            createNewRadioButton(
                    '#radioX',
                    product.Id,
                    product.Id,
                    product.Name,
                    index
            );
        });

        // refresh the button set - jQuery UI
        $("#radioX").buttonset("refresh");
    }

    // function used to create a new radio button
    function createNewRadioButton(
            selector,
            newRadioBtnId,
            newRadioBtnName,
            newRadioBtnText,
            newRadioBtnValue){

        // create a new radio button using supplied parameters
        var newRadioBtn = $('<input />').attr({
            type: "radio", id: newRadioBtnId, name: newRadioBtnName, value: newRadioBtnValue
        });

        // create a new label and append the new radio button
        var newLabel = $('<label />').attr('for', newRadioBtnId).text(newRadioBtnText);

        // add the input then the label (and forget about the <br/>
        $(selector)
                .append(newRadioBtn) // add the radio button
                .append(newLabel)    // add the label
                .append("<br>");     // add a line break to separate the buttons
    }

这是HTML(减去动态创建的单选按钮):

<div id="leftMenu">

<form>
    <div id="radioX">

    </div>
</form>

</div>

有什么想法吗?如果我手动设置一个jQuery UI单选按钮,一切都按照我的预期工作,我选择1个选项,取消选中所有其他选项,选择其他选项,取消选择所有其他选项等。上面的例子让我选择多个

这是我期望发生的截图(默认选择中间选项,然后选择当前突出显示的选项,中间选项自动取消突出显示):expected behaviour

以下是实际发生的截图(使用我动态创建的单选按钮):actual behaviour

2 个答案:

答案 0 :(得分:4)

动态生成的无线电输入的name属性是“Product.Id”。但是,如果您希望单选按钮互斥,则需要为它们指定相同的名称。例如,将方法更改为:

createNewRadioButton(
    '#radioX',
    product.Id,
    product.GroupByName, // ! use one identifier for mutually exclusive radio's
    product.Name,
    index
);

答案 1 :(得分:0)

您是否可以添加一个JavaScript onclick函数,该函数遍历单选按钮组,然后启用新选择的按钮?我为广泛传播的JSF单选按钮做了类似的事情,所以代码并不完全适合你的问题,但也许接近的东西会起作用:

function updateRadioButtons(radio) {
    var id = radio.name.substring(radio.name.lastIndexOf(':'));
    var el = radio.form.elements;
    for ( var i = 0; i < el.length; i++) {
        if (el[i].name.substring(el[i].name.lastIndexOf(':')) == id) {
            el[i].checked = false;
        }
    }

    radio.checked = true;
}

单选按钮的onclick事件将通过它将具有:

onclick='updateRadioButtons(this);'

您需要一组属于一起的单选按钮的命名约定。像radioGroupA:button1,radioGroupA:button2等