相关文章:网页教学网整理的Javascript的技巧代码
//过滤数字
input type=text onkeypress="return event.keyCode=48&&event.keyCode=57||(this.value.indexOf('.')0?event.keyCode==46:false)" onpaste="return !clipboardData.getData('text').match(/\D/)" ondragenter="return false"
//特殊用途
input type=button value=导入收藏夹 onclick="window.external.ImportExportFavorites(true,'http://localhost');"
input type=button value=导出收藏夹 onclick="window.external.ImportExportFavorites(false,'http://localhost');"
input type=button value=整理收藏夹 onclick="w...[ 查看全文 ]