这是一个kendo DropDownList。我希望在打开时显示警告。
@(Html.Kendo()
.DropDownList()
.Name("DropdownList")
.BindTo(new List<SelectListItem>() { new SelectListItem() { Text = "Drop Down" },
new SelectListItem() { Text = "Office" } })
.Events(e=>e.Open("open")))
//以下是简单的脚本
<script type="text/javascript">
function open(e) {
alert("Hello");
}
</script>
这给了我一个错误“ TypeError:'open'在没有实现接口Window的对象上调用。” 我在Mozilla 29.0.1中收到此错误
由于
答案 0 :(得分:0)