javascript取目前控制輸入框的id名稱

javascript 游標 輸入框id

 

@*HTML範例*@
<body>
  <div>
    <input type="text" name="P0" id="P0" onfocus="GetId(this.id)" value="000"/>
    <input type="text" name="P1" id="P1" onfocus="GetId(this.id)" value="001"/>
    <input type="text" name="P2" id="P2" onfocus="GetId(this.id)" value="002"/>
  </div>
</body>

<script type="text/javascript">
  //儲存容器
  var CurrentId = "";
	
  //方法
  function GetId(id) {
    CurrentId = id;
  }

  //測試1
  $("#P1").focus();  //移動游標
  alert($("#" + CurrentId).val());
  //結果=> "001"

  //測試2
  $("#P2").focus();
  alert($("#" + CurrentId).val());
  //結果=> "002"
</script>

 

我只是一棵樹