这个功能对于字符串中的段落分解比较有用
- <body> </body> </html> <script> descript="第一段script" </script> <script> descript="第二段script" str=document.body.innerHTML a=str.match(/\<script((.|\n)*?)\<\/script\>/gi) alert(a[0]) alert(a[1]) </script>
这个功能对于字符串中的段落分解比较有用
- <body> </body> </html> <script> descript="第一段script" </script> <script> descript="第二段script" str=document.body.innerHTML a=str.match(/\<script((.|\n)*?)\<\/script\>/gi) alert(a[0]) alert(a[1]) </script>