我想添加 v-on:click 或 @click ,例如以下html帮助器方法:
@Html.TextBoxFor(x => x.ItnScanCaseCode, new { @id="txtid",@click = "onchangeevent();" })
该怎么做?
答案 0 :(得分:2)
您可以将Dictionary
用于htmlAttributes
,如下所示:
@Html.TextBoxFor(x => x.ItnScanCaseCode, htmlAttributes: new Dictionary<string, object> {
{ "v-on:click", "onchangeevent()" },
{ "id", "txtid" }
})
答案 1 :(得分:-1)
您只需要使用下划线而不是-剃须刀将其替换为连字符。就这么简单!!!
@Html.TextBoxFor(x => x.ItnScanCaseCode, new { @id="txtid",v_on:click = "onchangeevent();" })