我无法将事件绑定(bind)到@ html.editorfor

我听说它可能与“class”属性的存在有关,但是我看不到任何联系。

@Html.EditorFor(model => model.SameAsBaseAddress, new { @onclick = "checkboxcheck()" })

function checkboxcheck() {
    //blah...
}

当我用firebug调试并手动添加处理程序时,一切正常。 TextBoxFor,RadioButtonFor等在 Razor 事件绑定(bind)方面没有问题。

该怎么办?

最佳答案

EditorFor扩展名没有像htmlAttributes这样的参数TextBoxFor,请参见:http://msdn.microsoft.com/en-us/library/system.web.mvc.html.editorextensions.editorfor%28v=vs.118%29.aspx

我建议您将EditorFor更改为 CheckBoxFor ,或者如果您确实想使用EditorForthis question建议创建一个编辑器模板。

关于javascript - Razor 编辑器,用于复选框事件绑定(bind),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20700734/

10-10 13:39