我有一个HTML DropdownList,我有一个onchange事件。但是当我在方法中放置调试器时,它只会在执行时崩溃我的系统。关于问题在哪里的任何想法?
@Html.DropDownList("abc", new SelectList(listItems, "Value", "Text", @selectedValue), new { @class = "aoDropDownListWidth", @onchange = "ShowTextBox();" })
function ShowTextBox() {
debugger;
var TextBoxObject = document.getElementById("xyz");
}