这条语句只能重定向出一个网页,能否在一个servlet中重定向到n个网页呢??(n>1)
这条语句只能重定向出一个网页,能否在一个servlet中重定向到n个网页呢??(n>1)
试了一下,用servlet好像不能实现。一次只能用一个sendRedirect,所以可以在页面上用javascript来实现~~~~
hao123的源码中有这段JS:
<script>function search4()
{if(form1.abc0.checked)
window.open(\"http://post.baidu.com/f?kw=\"+form1.key.value,\"mspg0\");
if(form1.abc1.checked)
window.open(\"http://www.sogou.com/web?sogouhome=&shuru=shou&query=\"+form1.key.value,\"mspg1\");
if(form1.abc2.checked)
window.open(\"http://cn.search.yahoo.com/search?p=\"+form1.key.value,\"mspg2\");
if(form1.abc3.checked)
window.open(\"http://video.baidu.com/v?ct=301989888&rn=20&pn=0&db=0&s=0&word=\"+form1.key.value,\"mspg3\");
if(form1.abc4.checked)
window.open(\"http://www.google.cn/search?hl=zh-CN&q=\"+form1.key.value,\"mspg4\");
if(form1.abc5.checked)
window.open(\"http://zhidao.baidu.com/q?ct=17&pn=0&tn=ikaslist&rn=10&word=\"+form1.key.value,\"mspg5\");
if(form1.abc6.checked)
window.open(\"http://www.baidu.com/s?tn=sitehao123&word=\"+form1.key.value,\"mspg6\");
if(form1.abc7.checked)
window.open(\"http://mp3search.baidu.com/wstsearch?tn=baidump3&ct=134217728&lm=-1&rn=&word=\"+form1.key.value,\"mspg7\");if(form1.abc9.checked)
window.open(\"http://mp3search.baidu.com/wstsearch?tn=baidump3lyric&ct=150994944&lm=-1&rn=&word=\"+form1.key.value,\"mspg9\");
if(form1.abc10.checked)
window.open(\"http://www.baidu.com/baidu?ft=all&q1=\"+form1.key.value,\"mspg10\");
if(form1.abc11.checked)
window.open(\"http://www.baidu.com/i?ct=201326592&cl=2&lm=-1&tn=baiduimage&word=\"+form1.key.value,\"mspg11\");
if(form1.abc12.checked)
window.open(\"http://www.baidu.com/s?tn=sitehao123&word=\"+form1.key.value+\"%20site%3Awww.hao123.com\",\"mspg12\");
if(form1.abc13.checked)
window.open(\"http://baike.baidu.com/w?ct=17&lm=0&tn=baiduWikiSearch&pn=0&rn=10&word=\"+form1.key.value+\"&submit=search\",\"mspg13\");
if(form1.abc14.checked)
window.open(\"http://map.baidu.com/m?word=\"+form1.key.value,\"mspg14\");
if(form1.abc15.checked)
window.open(\"http://news.baidu.com/ns?cl=2&rn=20&tn=news&word=\"+form1.key.value,\"mspg15\");
if(form1.abc16.checked)
window.open(\"http://www.baidu.com/baidu?ie=gb2312&bs=&sr=&z=&ct=1048576&cl=3&f=8&word=\"+form1.key.value,\"mspg16\");
return false;}</script>