1.利用正则提取URL后面的请求页数
<html> <head> <title></title> <script type="text/javascript"> window.onload=function(){ var urlStr=‘https://www.baidu.com/s?pIndex=‘+45; var rec=/=(.+)/.exec(urlStr)[1]; alert(rec); } </script> </head> <body> </body> </html>
运行后弹出的是45。
时间: 2024-10-13 02:13:10