一、有哪些方法可以通过浏览器往服务器发请求?
- 1、表单form的提交。
- 2、超链接。
- 3、
document.location - 4、
window.location - 5、
window.open("url") - 6、直接在浏览器地址栏上输入URL,然后回车。(这个也可以手动输入,提交数据也可以成为动态的。)
- 以上所有的请求方式均可以携带数据给服务器,只有通过表单提交的数据才是动态的,因为超链接等是写死的,用户只能点击这个超链接。
二、代码:
DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>设置浏览器地址栏上的URLtitle>
head>
<body>
<script type="text/javascript">
function goBaidu(){
document.location = "http://www.tmall.com";
}
script>
<input type="button" value="新浪" onclick="goBaidu()"/>
<input type="button" value="baidu" onclick="window.open('http://www.baidu.com');" />
body>
html>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27