首页 技术 正文
技术 2022年11月21日
0 收藏 498 点赞 3,184 浏览 1152 个字

1.链接到某页
<input type=”button” name=”Submit” value=”确 定” class=”btn” onclick=”location.href=’filename.html'” />

2.返回(等同后退)
<input name=”Submit2″ type=”button” class=”btn” onclick=”location.href=’javascript:history.go(-1);'” value=”返 回” />

3.打开新网页
<input type=”button” name=”Submit2″ value=”确 定” class=”btn” onclick=”window.open(‘filename.html’)” />

4.打开无边框的新窗口
<input
type=”button” name=”Submit2″ value=”确 定” class=”btn”
onclick=”javascript:window.open(‘filename.html’,”,’width=720,height=500,resizable=yes,scrollbars=yes,status=no’)”
/>

5.打开新网页同时指向另一页
<input
type=”button” name=”Submit2″ value=”确 定” class=”btn”
onclick=”window.open(‘filename.html’);location.href=’http://www.cxybl.com'”
/>

6.打开无边框的新窗口同时指向另一页
<input
type=”button” name=”Submit2″ value=”确 定” class=”btn”
onclick=”javascript:window.open(‘http://www.cxybl.com’,”,’width=720,height=500,resizable=yes,scrollbars=yes,status=no’);
window.location=’filename.html’;” />

7.点击按钮弹出确认alert窗口
方式一:
<input type=”button” name=”Submit1″ value=”确定” class=”btn”
onClick=”alert(‘是否确认提交?’);location.href= ‘filename.html’;return false;” >
方式二:
<input type=”button” name=”Submit2″ value=”确定” class=”btn”
onClick=”if (confirm(‘是否确认提交?’))location.href= ‘filename.html’;return false;” >

上一篇: Git 的详细使用
下一篇: POJ 2318
相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,078
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,553
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,402
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,177
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,814
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,898