10 2010 档案

js各种验证文本框输入格式 (收)
摘要:不能为空 <input onblur="if(this.value.replace(/^ +| +$/g,'')=='')alert('不能为空!')">只能输入英文和数字<input onblur="if(/[^0-9a-zA-Z]/g.test(value))alert('有错')"><input onkeyup="value=value.replace(/[^0... 阅读全文

posted @ 2010-10-20 16:21 MR CO 阅读(965) 评论(0) 推荐(2)

window.external对象那点东西...
摘要:1、window.external...<INPUT onclick='window.external.ImportExportFavorites(true,"http://localhost");' type=button value=导入收藏夹> <INPUT onclick='window.external.ImportExportFavorites(false,"http... 阅读全文

posted @ 2010-10-11 11:37 MR CO 阅读(2339) 评论(0) 推荐(1)