2012年7月7日
摘要: <script type="text/javascript"> function validate(){ var reg = new RegExp("^[0-9]*$"); var obj = document.getElementById("name"); if(!reg.test(obj.value)){ alert("请输入数字!"); } if(!/^[0-9]*$/.test(obj.value)){ alert("请输入数字!"); } }</script>验 阅读全文
posted @ 2012-07-07 16:29 axinfly 阅读(110) 评论(0) 推荐(0) 编辑
  2012年6月27日
摘要: 1. 如何让选中的一行记录高亮显示?http://topic.csdn.net/t/20050105/09/3699823.html2. 如何在下拉列表框里选择一个值后跳出新窗口?http://topic.csdn.net/t/20050107/15/3707444.html3. 如何在JSP中启动execl?http://community.csdn.net/Expert/TopicView1.asp?id=4909154http://community.csdn.net/Expert/TopicView1.asp?id=46852974. 两级联动菜单http://topic.csdn.n 阅读全文
posted @ 2012-06-27 10:52 axinfly 阅读(150) 评论(0) 推荐(0) 编辑