修正了错误,但不明白你的意图<html>
<head>
<title>无标题文档</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<script language="JavaScript">
 function setDisabled(trueOrFalse){
  with(document.form1){
  select.disabled=trueOrFalse;
  if(trueOrFalse){action="www.jspserver.com";}
  }
 }
</script>
<body bgcolor="#FFFFFF" text="#000000">
<form name="form1" method="post" action="www.sina.com.cn">
<input type="submit" name="Submit" value="Submit">
<input type="radio" name="my" value="on" onclick="setDisabled(1)" checked>
  1 
<input type="radio" name="my" value="off" onclick="setDisabled(0)">
  0
<input type="text" name="textfield">
<select class=input name="select">
                  <option selected>aaaaa</option>
                  <option>bbbbb</option>
                </select>
</form>
</body>
</html>