JavaScriptを使ってテキストボックスにフォーカスを合わせようとしていますがうまくいきません.focus()の使い方を教えてそのテキストボックスにnull値を設定してください.
脚本:
<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" });