<head>
<script type="text/javascript">
function txtdisable(){
document.abc.text1.disable=true;
}
</script>
</head>
<form name="abc">
<input name="text1" type="text" value="abc" />
<input type="radio" name="btn" onclick="txtdisable();" />
</form>
为啥按了btn之后,文本框没有被禁用?
--
FROM 111.192.136.*