这是在开发应用中用到了,起先以为用php教程现实现,现在突然想到了用js的indexof就可以实例了,代码如下。
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>js判断地址中是否带有参数</title>
</head><body>
<script>
var u = document.url;
if( u.indexof('?') != -1 )
{
document.location='http://www.111cn.net';
}
</script>
</body>
</html>
时间: 2024-12-22 08:41:05