• October 22, 2022

    กรอกข้อมูลฟอร์ม แสดง สองแห่ง <input>

    
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <form>
      <input type="text" id="id1" name="" value="" />
      <input type="text" id="id2" name="" value="" />
      <input type="text" id="uniqueid" value="">
    </form>
    
    <script>
    var $id1 = $("#id1");         //Store id1 input
    var $unique = $("#uniqueid"); //Store uniqueid input
    
    $id1.mousemove(function() {   //On mousemove event of id1
      $unique.val($(this).val()); //Set unique's value to id1's value
    });
    </script>

    ใช้งานจริง ลดรูปให้สั้น

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
      <input type="text" id="id1" name="" value="" />
      <input type="text" id="id2" name="" value="" />
    <script>
    var $id1 = $("#id1");var $unique = $("#id2");
    $id1.mousemove(function() {$unique.val($(this).val());});
    </script>


เวอไนน์ไอคอร์ส

ประหยัดเวลากว่า 100 เท่า!






เวอไนน์เว็บไซต์⚡️
สร้างเว็บไซต์ ดูแลเว็บไซต์

Categories


Uncategorized