2011-03-22 81 views
0

我是javascript中的新手。 我有一個textBoxradioButton。 如果我點擊文本框radioButton應該被點擊。 任何這個例子?javascript in radio button

+0

你想單選按鈕即可選擇(這是未選擇的最初)文本框被點擊或獲得焦點的時候? – Kushal 2011-03-22 08:33:11

回答

2

這應該做的工作:

<html> 
<head> 
<script type="text/javascript"> 
function boo() 
{ 
document.all.myRadioButton1.checked = true; 

} 
</script> 
</head> 
<body> 
<input type="text" value="some text" onclick="boo()"> 
<input type="radio" id="myRadioButton1"> 
</body> 
</html> 
相關問題