0

我正在尝试使用 jQuery 将列表项动态附加到 MVC DropDownListFor。不幸的是,当我运行我的代码时没有任何反应。我使用了 console.log 来仔细检查正在生成的 html,确实如此。任何帮助,将不胜感激!

这是 jQuery

function formHelpers() {
jQuery.fn.addDropDownValues = function (options) {

    // Grab the class selector given to the function
    var itemClass = $(this);

    // Iterate through each element and value
    $.each(options, function (val, text) {
        itemClass.append("<option></option>").val(val).html(text);
    });
  };

}; 

$(document).ready(function () {
        formHelpers();
        $(".clrDropDown").addDropDownValues({Val1:"Yes", Val2:"No"});
    });

这是cshtml

<div style="float:left;margin:0 10px 0 0;">
    <table class="ntiTable">
        <tbody>

           <td nowrap class="ntiTableFirstColumn" title="This is the Crl Collaboration  field."><div class="editor-label">@Html.LabelFor(m => m.myProject.CrlCollaboration)</div></td>
           <td><div class="editor-field">@Html.DropDownListFor(model => model.myProject.CrlCollaboration, new SelectList(""), new { @class = "crlDropDown"})@Html.ValidationMessageFor(model => model.myProject.CrlCollaboration)</div></td>

        </tbody>
    </table>
</div>

生成的 CSHTML

 <tr>
            <td class="ntiTableFirstColumn" title="This is the Crl Collaboration field." nowrap="nowrap"><div class="editor-label"><label for="myProject_CrlCollaboration">Crl Collaboration</label></div></td>
            <td><div class="editor-field"><select class="crlDropDown" data-val="true" data-val-length="The field Crl Collaboration must be a string with a maximum length of 10." data-val-length-max="10" id="myProject_CrlCollaboration" name="myProject.CrlCollaboration"></select><span class="field-validation-valid" data-valmsg-for="myProject.CrlCollaboration" data-valmsg-replace="true"></span></div></td>
 </tr>
4

2 回答 2

3

http://jsfiddle.net/enbF7/4/ - 用您生成的 cshtml 更新了 jsFiddle,它现在可以工作了。类“clrDropDown”拼写错误,在生成的 HTML 中拼写为“crlDropDown”。

问题出在您的 $.each() 函数中...

看起来很简单,您如何将值和文本格式化<option>itemClass.append(<option>).val(val))

    $.each(options, function(value, text) {   
        itemClass
            .append($('<option>', { value : value})
            .text(text)); 
    });

查看 jsfiddle 以查看它的实际效果,希望对您有所帮助!

于 2012-07-26T13:04:18.870 回答
0

虽然 mcpDESIGNS 的帖子有效(+1),但我认为他不想要一个已经可用的select.

我用一个新的版本更新了他的小提琴,它没有添加一个已经存在的带有预填充值的列表。

http://jsfiddle.net/enbF7/2/

于 2012-07-26T13:12:53.323 回答