我用jquery写了一下,你看看效果是不是你想要的,如果你想要js版的,再和我说~<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<script  type="text/javascript">
  $(function(){

  var lowPay=100;//总金额的设定
 $("#pay3").click(function(){
 if(lowPay>99){
 alert('提醒:货到付款需要购物满99元,建议您使用"在线支付"!') 
 $("#pay1").attr("checked","checked");
 }  
 })  
  })
</script>
</head><body>
<input type="radio" name="pay" id="pay1"/>在线支付
<input type="radio" name="pay" />银行付款
<input type="radio" name="pay"  id="pay3"/>货到付款
</body>
</html>