博客
关于我
JS-BOM
阅读量:344 次
发布时间:2019-03-04

本文共 333 字,大约阅读时间需要 1 分钟。

一、思维导图

二、window.open

当关闭窗体时,window.close()

三、window.confirm

四、window.history

五、设置浏览器地址栏上的URL

function gobaidu(){    window.location.href="http://www.baidu.com";}

六、那些方式可以浏览器往服务器发送请求?

1、表单form的提交

2、超链接

3、document.location

4、window.location

5、window.open("url");

6、直接在浏览器地址栏上输入URL,然后回车。(这个也可以手动输入)

 

以上所有请求方式均可以携带数据给服务器,只有通过表单提交的数据才是动态的。

转载地址:http://wihe.baihongyu.com/

你可能感兴趣的文章
ng 指令的自定义、使用
查看>>
ng6.1 新特性:滚回到之前的位置
查看>>
nghttp3使用指南
查看>>
【Flink】Flink 2023 Flink 自动化运维的大规模落地实践
查看>>
Nginx
查看>>
nginx + etcd 动态负载均衡实践(一)—— 组件介绍
查看>>
nginx + etcd 动态负载均衡实践(三)—— 基于nginx-upsync-module实现
查看>>
nginx + etcd 动态负载均衡实践(二)—— 组件安装
查看>>
nginx + etcd 动态负载均衡实践(四)—— 基于confd实现
查看>>
Nginx + Spring Boot 实现负载均衡
查看>>
Nginx + Tomcat + SpringBoot 部署项目
查看>>
Nginx + uWSGI + Flask + Vhost
查看>>
Nginx - Header详解
查看>>
nginx - thinkphp 如何实现url的rewrite
查看>>
Nginx - 反向代理、负载均衡、动静分离、底层原理(案例实战分析)
查看>>
Nginx - 反向代理与负载均衡
查看>>
nginx 1.24.0 安装nginx最新稳定版
查看>>
nginx 301 永久重定向
查看>>
nginx 301跳转
查看>>
nginx 403 forbidden
查看>>