我正在尝试使用 JavaScript 将焦点放在文本框上。但它不起作用,请告诉使用 focus() 的方法并为该文本框设置空值。
脚本:
<script type="text/javascript">
$(document).ready(function ()
{
var str = ('@ViewData["ControlView"]'); //alert(str);
if (str == "1")
ShowProduct();
else
ShowGrid();
});
var message = ('@ViewData["Success"]');
if (message == "Product Code Already Exits.")
{
document.getElementById("Item_Code").value ="";
document.getElementById("Item_Code").focus();
}
看法:
@Html.TextBox("Item_Code", "", new { @Maxlength = "10", id = "Item_Code" });