文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>html里面3个小问题style、radio、textnum

html里面3个小问题style、radio、textnum

时间:2006-10-11  来源:qzc

radio的使用 <input name="type" type="radio" class="form1" id="type" value="0" onclick="onChangeType(this.value)">管理员
<input name="type" type="radio" class="form1" id="type" checked value="1" onclick="onChangeType(this.value)">用户
js判断第2个是否选中 if(form1.type[1].checked)
为了兼容ie和firefox可用以下代码
document.getElementsByName("type")[1].checked
注意getElementsByName不同于getElementByName、getElementsById

jsp后台取value值 int type=Integer.parseInt(request.getParameter("type"));   文本框数字验证防范 <input name="phone" type="text" class="form1" id="phone" maxlength="16" onkeypress="checkIsFloat();"
style="ime-mode:disabled" ondragenter="return false" onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))" >
  function checkIsFloat(){
 var nc=event.keyCode;
 alert(nc);
 if((nc>=48 && nc<=57)||nc==45 || 40==nc||41==nc||35==nc ){
 }else if(nc==46){
  var s=document.tremail.phone.value;
  for(var i=0;i<s.length;i++){
   if(s.charAt(i)=='.'){
   event.keyCode=0;
   return;
   }
  }
 }else{
  event.keyCode=0;
  return;
 }
}
----------------
补充:今天碰上怪事,js函数名有大写字母,放在本页正常,放在src.js文件里调用找不到函数了
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载