Translate

2012年2月15日 星期三

javascript心得,取得設定輸入元件的Value

ref→http://perishablepress.com/
ref→http://hi.baidu.com/webworker/blog/item/1595fbded544f55395ee37f3.html
ref→http://www.w3schools.com/js/js_obj_array.asp
ref→http://stackoverflow.com/questions/237104/array-containsobj-in-javascript
ref→http://www.cnblogs.com/lianqianxue/archive/2011/05/17/2048856.html
ref→http://hi.baidu.com/yxhua240/blog/item/f7b186135804f2ddf7039eea.html
ref→http://www.dotblogs.com.tw/eason.yen/archive/2011/02/17/21419.aspx
ref→http://www.cnblogs.com/yond/
ref→http://webcenter.hit.edu.cn/articles/2009/05-16/05070500.htm

當只要設定輸入欄位的值,只需要這樣做即可
連Firefox,IE都可支援了


<body>
  <input type="text" id="text1"  onkeyup=this.setAttribute('value',this.value) class="test" value="123" size="28">
  <input type="text" id="text2"  class="test" value="456" size="28">
  <input id="checkGetFirstData"  type="checkbox" onclick="CheckGetData()"/>
</body>



function CheckGetData()
{
var obj = document.getElementById("checkGetFirstData");
var objtext = document.getElementById("text1");
if(obj.checked)
{
objtext.value = "";
//objtext.setAttribute('value',this.value); //Firefox無法使用
//alert("check!")
}
else
{
objtext.value = "bbb";
//alert("no check!")
}
}

沒有留言:

張貼留言