有时候需要做到打开网页。跳转到事先指定的一些网站中随机的某一个网站。
代码如下:
<script>
setTimeout(function(){
var arr=['http://baidu.com','http://webstion.com/','http://163.com'];
window.location.href=arr[parseInt(Math.random()*arr.length)];
},100);
</script>
昵称必填
邮箱选填
网址选填
记住我,下次回复时不用重新输入个人信息