2008年3月21日 星期五

javascript 取得radio 的值

懶的跑迴圈~

第一步,先放一個hidden
<input id="gotit" name="gotit" type="hidden" value="22">


然後將三個radio上各自加一個onclick動作,使它們能改變 gotit 的value
<input name="nouse" type="radio" onclick="document.getElementById('gotit').value=11">11
<input name="nouse" type="radio" checked="checked" onclick="document.getElementById('gotit').value=22">22
<input name="nouse" type="radio" onclick="document.getElementById('gotit').value=33">33


最後再拿id為"gotit"的value就可以了
document.getElementById("gotit").value
document.getElementsByName("gotit").value


碰到這個問題的朋友,可以試一下這個方法。
出處:http://www.flaspx.com/weblog/blog.php?bid=17

【下列文章您可能也有興趣】

沒有留言: