
js
lsfa1234
这个作者很懒,什么都没留下…
展开
-
模糊查找元素个数
$("div[id^=jq_]");$("div:not([id^=jq_])");alert($("td[id^=submenu]").length);原创 2009-08-30 21:09:00 · 723 阅读 · 0 评论 -
正则表达式
超有用的JS正则表达式大全[日期:2009-05-19]来源: 作者:[字体:大 中 小] ne_wf_Validator = {Require : /.+/,Email : /^/w+([-+.]/w+)*@/w+([-.]/w+)*/./w+([-.]/w+)*$/,Phone : /^((/(/d{2,3}/))|(/d{3}/-))?(/(原创 2009-09-25 18:12:00 · 414 阅读 · 0 评论 -
正则表达式2
function isTel(s) { //var patrn=/^[+]{0,1}(/d){1,3}[ ]?([-]?(/d){1,12})+$/; var patrn=/^[+]{0,1}(/d){1,3}[ ]?([-]?((/d)|[ ]){1,12})+$/; if (!patrn.exec(s)) return false return true } function isChines原创 2009-09-25 18:14:00 · 341 阅读 · 0 评论 -
js决断控件的位置
function getElementPos(elementId) { var ua = navigator.userAgent.toLowerCase(); var isOpera = (ua.indexOf(opera) != -1); var isIE = (ua.indexOf(msie) != -1 && !isOpera); // not opera spoof v原创 2009-10-24 08:28:00 · 380 阅读 · 0 评论 -
再谈iframe自适应高度
> function reinitIframe() { var iframe = document.getElementById("frame_content"); try{var bHeight = iframe.contentWindow.document.body.scrollHeight; var dHeight = iframe.contentWindow.docu原创 2009-11-10 22:10:00 · 365 阅读 · 0 评论