<script language="javaScript"> 
function checkGroupSend(){
obj=GroupSendForm.OtherPhone;
sOther = obj.value;
for (i=0;i<sOther.length;i++) {
c = sOther.charAt(i);
if (c!=String.fromCharCode(13) && c!=String.fromCharCode(10) && (c<'0' || c>'9')) {
window.alert("手机号码中含有非法字符[ " + c + " ]");
obj.focus();
return false;
}
}
}
</script> <form name="GroupSendForm" method="post" action="" onsubmit="return checkGroupSend();">
  <textarea name="OtherPhone" rows="15"></textarea>
  <input type="submit" name="Submit" value="提交">
</form>