我有一个 jquery 自定义属性来屏蔽文本框,我可以像这样在 thml 输入控件上应用它
<input data-inputmask="'mask': '9.99 %', 'repeat': 1, 'greedy' : true" />
但我需要在@Html.TextBoxFor 上应用它
for (int i = 0; i < Model.PurchaseContract.Particulars.Count; i++)
{
@Html.TextBoxFor(m => m.PurchaseContract.Particulars[i].StandardReceived, new { @class = "textbox", @style = "width:94%;" })
}
请建议我该怎么做