<form name="form1" method="post" action="http://www.chinahr.com/promotion/cs/07/07hngz/index.asp?jtq=ignore">
<p>   
  <input type="radio" name="cbContactType" value="湖南出版投资控股集团" />
      <a href="http://www.hnpg.com.cn/" target="_blank">湖南出版投资控股集团</a>            
      <input type="radio" name="cbContactType" value="湖南有色金属控股集团有限公司" />
      <a href="http://www.hng.com.cn/" target="_blank">湖南有色金属控股集团有限公司</a><br />
   
<input type="radio" name="cbContactType" value="二十三冶建设集团有限公司" />
<a href="http://www.23ye.com/" target="_blank">二十三冶建设集团有限公司</a>          
<input type="radio" name="cbContactType" value="三一重工股份有限公司" />
<a href="http://www.sany.com.cn/" target="_blank">三一重工股份有限公司</a><br />
   
<input type="radio" name="cbContactType" value="中国建设银行股份有限公司湖南分公司" />
<a href="http://www.ccb.com/" target="_blank">中国建设银行股份有限公司湖南分公司</a>     
<input type="radio" name="cbContactType" value="长沙中联重工科技发展股份有限公司" />
<a href="http://www.zljt.com/" target="_blank">长沙中联重工科技发展股份有限公司</a><br />
   
<input type="radio" name="cbContactType" value="湖南山河智能机械股份有限公司" />
<a href="http://www.sunward.com.cn/" target="_blank">湖南山河智能机械股份有限公司</a>        
<input type="radio" name="cbContactType" value="步步高商业链锁股份有限公司" />
<a href="http://www.bbg.com.cn/" target="_blank">步步高商业链锁股份有限公司</a><br />
   
<input type="radio" name="cbContactType" value="株洲南车时代电气股份有限公司" />
<a href="http://www.timeselectric.cn/" target="_blank">株洲南车时代电气股份有限公司</a>        
<input type="radio" name="cbContactType" value="株洲齿轮有限责任公司" />
<a href="http://www.chinese-gear.com/" target="_blank">株洲齿轮有限责任公司</a><br />
   
<input type="radio" name="cbContactType" value="长丰集团有限责任公司" />
<a href="http://www.cfmotors.com/" target="_blank">长丰集团有限责任公司</a>            
<input type="radio" name="cbContactType" value="袁隆平农业高科技股份有限公司" />
<a href="http://www.lpht.com.cn/" target="_blank">袁隆平农业高科技股份有限公司</a><br />
   
<input type="radio" name="cbContactType" value="湖南亚华乳业有限公司" />
<a href="http://www.avadairy.com/" target="_blank">湖南亚华乳业有限公司</a>            
<input type="radio" name="cbContactType" value="快乐购物有限责任公司" />
<a href="http://www.happigo.com/" target="_blank">快乐购物有限责任公司</a><br />
   
<input type="radio" name="cbContactType" value="远大空调有限公司" />
<a href="http://www.broad.com.cn/" target="_blank">远大空调有限公司</a>              
<input type="radio" name="cbContactType" value="湖南太子奶集团" />
<a href="http://www.taizinai.com.cn/" target="_blank">湖南太子奶集团</a><br />
   
<input type="radio" name="cbContactType" value="威胜仪表集团有限公司" />
<a href="http://www.wasion.com/" target="_blank">威胜仪表集团有限公司</a>            
<input type="radio" name="cbContactType" value="株洲千金药业股份有限公司" />
<a href="http://www.qian-jin.com/" target="_blank">株洲千金药业股份有限公司</a><br />
   
<input type="radio" name="cbContactType" value="湖南梦洁家纺股份有限公司" />
<a href="http://www.mendale.com/" target="_blank">湖南梦洁家纺股份有限公司</a>          
<input type="radio" name="cbContactType" value="湖南金浩集团" />
<a href="http://www.jinhao.net/" target="_blank">湖南金浩集团</a></p>
<p align="center"><input name="IsSubmit" type="hidden" id="IsSubmit" value="yes"><input type="image" name="imageField" src="http://www.chinahr.com/promotion/cs/07/07hngz/tu1/a01.gif" style="border:0px;"/></p>
                </form>

解决方案 »

  1.   

    没有明白楼主是什么需求,是否想在提交表单的时候,对输入做一个检查??<script>
    function checkform()
    {
      var test=document.getElementById("test");
      if(test.value!= "2")
      {
        alert("值要等于2");
        return false;
      }
    }
    </script>
    <form  onsubmit="return checkform()" action="" method="post">
    <input type="text" id="test" />
    <input type="submit" value="go" />
    </form> 
      

  2.   

    和<input type="image" 没什么关系
    主要在于 form定义了onSubmit事件
    <form name="form1" method="post" action="index.asp?jtq=ignore"  onSubmit="return ValidateSubding(this);">
    如果需要提交应定义ValidateSubding方法并返回真