1. 程式人生 > >寫一個簡單的form表單,當光標離開表單的時候表單的值發送給後臺

寫一個簡單的form表單,當光標離開表單的時候表單的值發送給後臺

bsp name clas blog var tex txt rip ()

 1 <body>
 2 <form action="index.php">
 3     <input type="text" name="txt" id="txt" value="abc">
 4 </form>
 5 <script>
 6     window.onload=function () { 
 7         var form=document.forms[0];
 8         var input=document.getElementById(txt);
 9         input.onblur
=function () { 10 form.submit() 11 } 12 } 13 </script> 14 </body>

寫一個簡單的form表單,當光標離開表單的時候表單的值發送給後臺