这是我的代码
<div class="rButtons">
<input type="radio" name="numbers" value="10" onclick="uncheck();" />10
<input type="radio" name="numbers" value="20" onclick="uncheck();" />20
<input type="radio" name="numbers" value="other" onclick="check(this);"/>other
<input type="text" id="other_field" name="other_field" onblur="checktext(this);"/>
</div>
这是CSS代码
<style type="text/css">
#other_field
{
visibility: hidden;
}
</style>
这是js
<script type="text/javascript">
function uncheck()
{
document.getElementById('other_field').style.visibility = "hidden";
}
function check(inputField)
{
if(inputField.checked)
{
document.getElementById('other_field').style.visibility = "visible";
}
}
function checktext(inputField)
{
if(isNaN(inputField.value))
{
alert('only numbers are allowed..');
return false;
}
else if( (inputField.value % 10 ) != 0)
{
alert('only multiples of 10..');
return false;
}
else
{
return true;
}
}
</script>
一切都很好.. 但问题是这个.. 当我点击“其他”单选按钮时,它会打开一个新的空白字段,但是当我点击回到 10 或 20 时它会停留在那里.. 我怎样才能让它消失?
我知道答案很简单..但我尝试了很多东西但没有工作..
谢谢