- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <html>
- <head>
- <title>Untitled</title>
- </head>
- <body>
- <script language="JavaScript" type="text/javascript">
- <!--
- var strXml="<author>jack</author><author>jack</author>";
- var regExp=/<author>(/w*)<//author>/ig;
- //exec返回一个数组对象
- var arr=strXml.match(regExp);
- var author=arr[1];
- alert(arr);
- //-->
- alert(RegExp.$1);
- </script>
- Hello World!
- </body>
- </html>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <html>
- <head>
- <title>Untitled</title>
- </head>
- <body>
- <script language="JavaScript" type="text/javascript">
- <!--
- var strXml = "<author>jack</author><author>jack</author>";
- var regExp= /<author>(/w*)<//author>/gi;
- var result = [];
- var match;
- while( match=regExp.exec(strXml) ){
- result.push(match[1]);
- }
- alert(result);
- //-->
- </script>
- Hello World!
- </body>
- </html>
新闻热点
疑难解答