1

好的 - 我有一个函数,我调用它来根据这个问题动态添加一个单选按钮。这是完整的功能:

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

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

        // create a new label and append the new radio button
        var newLabel = $('<label />').append(newRadioBtn).append(newRadioBtnText);

        // add the new radio button and refresh the buttonset
        $(selector).append(newLabel).append('<br />').buttonset("refresh");
    }

因此,如果我要使用以下代码调用上述函数,我希望在已包含在 div '#radioX' 中的单选按钮下方添加另一个单选按钮(假设有一个 id 为 radioX 的 div 包含单选按钮):

            // create a new radio button using the info returned from server
            createNewRadioButton(
                    '#radioX', // Radio button div id
                    product.Id, // Id
                    product.Id, // Name
                    product.Name // Label Text
            );

鉴于在文档准备就绪时,我告诉 jQuery 从 #radioX 中包含的单选按钮中创建一个按钮集,如下所示:$( "#radioX" ).buttonset();为什么$("#radioX").buttonset("refresh")函数 createNewRadioButton 中的调用不刷新单选按钮列表?

我在调用 createNewRadioButton 后看到的结果是添加了一个带有所需文本的新标签,但没有新的单选按钮。因此,我看到的不是一个漂亮的新 jQuery 单选按钮,而是一个新标签,其文本与 product.Name 等效(在给定的示例中)。

在调用 createNewRadioButton 后,我还注意到 firebug 中的此警告输出 - 这与它有什么关系吗?

reference to undefined property $(this).button("widget")[0]

编辑

这是我预期会发生的屏幕截图:

这是发生的情况的屏幕截图

4

2 回答 2

1

我的错。实际上,该refresh方法在运行时很好地处理了添加的无线电元素。

我认为您生成的标记createNewRadioButton()与插件的预期不兼容。

您创建:

<label><input /></label>

插件期望:

<input /><label for=''></label>


这是修改后的功能:

function createNewRadioButton(
        selector,
        newRadioBtnId,
        newRadioBtnName,
        newRadioBtnText){

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

    // 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).append(newLabel).buttonset("refresh");
}


不要忘记初始化插件,即使容器“#radioX”是空的

$('#radioX').buttonset();


我为您制作了一个jsfiddle以查看一个工作示例。

于 2011-11-28T11:01:23.050 回答
-1

这一定是一个错误。将 jQuery 版本从 1.7.1 更改为 1.8.3,在jsfiddle1中选择 UI ,您将看到它现在按预期工作。

code here
于 2013-03-30T06:26:12.070 回答