我有输入文本框。我想拥有它,以便当我选择输入时,输入的内容将突出显示。我怎么做?
现在,当我选中时,输入的内容不会突出显示。只需光标进入输入框,但不会突出显示任何内容。
我正在使用Kendo UI作为ASP.NET MVC 4应用程序的输入框。
这是我的示例输入框:
<td id="ViewTextBox">@(Html.Kendo().NumericTextBoxFor
<double>(model => model.View).Format("#").Decimals(0).Min(0) .HtmlAttributes(new { @class = "dPNumericbox" }) .Events(e => e .Change("BrowserSide.DP.ViewTextBoxChanged") ))
</td>