当前位置: 代码迷 >> JavaScript >> 正则取值name="xxxx"解决办法
  详细解决方案

正则取值name="xxxx"解决办法

热度:1111   发布时间:2012-02-02 23:57:14.0
正则取值name="xxxx"
使用正则取出 <input   type= "text "   name= "xxxx "/>

中name的value


------解决方案--------------------
<script type= "text/javascript ">
var name_p =/ <input[\S\s]+?name=\ "([^\ "]+)\ "[^> ]+> /i;
var name = ' <input type= "text " name= "xxxx "/> '.match(name_p)[1];
alert(name);
</script>
  相关解决方案