[セットトップ]テキストボックスにフォーカスを付ける


実際の開発では、テキストボックスを判断する必要があるかもしれません.空の場合はフォームの提出はできません.また、ユーザーインターフェースのインタラクティブフレンドリーな考慮のために、テキストボックスに焦点を合わせてユーザーに入力を続ける必要があります.以下はどのようにjsコントロールを使ってこの需要を実現するかを見てみます.
<body>
    <input type="text" id="tmpName" name="tmpName" onblur="checkExist()"><span id="tip"></span>
    <script type="text/javascript" src="jquery-1.8.3.min.js"></script>
    <script type="text/javascript"> //             $(function(){ $("#tmpName").focus(); }); //js   function checkExist() { var tmpName= $("#tmpName").val(); if(tmpName.length == 0){ $("#tip").html("     "); //        window.setTimeout (function(){ document.getElementById ('tmpName'). select(); },0 ); }else if(tmpName.length != 0){ alert("     "); } } </script>
</body>