pu369com

2020年3月13日

js 正则表达式:价格的校验

摘要: /*验证单价:包括两位小数*/ var priceReg = /(^[1-9]\d*(\.\d{1,2})?$)|(^0(\.\d{1,2})?$)/; var price=$("#price").val(); if (!priceReg.test(price)){ alert("请输入正确的产品价 阅读全文

posted @ 2020-03-13 16:28 pu369com 阅读(2666) 评论(0) 推荐(0) 编辑

如何查看当前网页中有几个frame(iframe)

摘要: 直接在chrome的Console中: for(i=0;i<frames.length;i++){ console.log(i , frames[i].document.title) } frames.length就是几个(只是第一层的),并可通过title来辨别第几个。输入frames[0]可查看 阅读全文

posted @ 2020-03-13 12:45 pu369com 阅读(4984) 评论(0) 推荐(0) 编辑

导航