Notice: Undefined variable: bid in /home/wwwroot/cczh004/wwwroot/public/class.php on line 3
搜索列表
-
如何用正则取input type="text"中的value
【正则表达式】1.如何通过正则取input type="text"中的value呢? 2.如何过滤掉input type="checkbox"的标签? 这样只能达到正则取input type="text"中的value可是不能过滤掉input type="checkbox"的标签! alert function pla(str) { var re=/]+?value=(\"|\')([^>]*)\1[^>]+?>/gi; return(str.replace(re,"$2")); } [C...
如何用正则取inputtype="text"中的value