
Java script
iteye_7324
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
至此页面后提示信息并且跳转到其他页面
alert("String"); location.href="url";/**这里的url为服务器端显示的相对路径*/如:http://localhost/8080/jsp-examples/www.baidu.comwww.baidu.com=url2007-04-29 13:42:10 · 182 阅读 · 0 评论 -
实现JSP页面中在指定的时间段后再跳转!
My JSP '2.jsp' starting page var count = 5;//记数器 function countdown() { count--; if(count == 1) { window.location.href='3.jsp'; } ...2007-05-15 16:44:48 · 297 阅读 · 0 评论 -
All details about the visitor's browser with javascript
var x = navigatordocument.write("CodeName=" + x.appCodeName)document.write("")document.write("MinorVersion=" + x.appMinorVersion)document.write("")document.write("Name=" + x.appName)...2007-06-28 13:51:06 · 146 阅读 · 0 评论