1 Star 0 Fork 0

龚贤/jquery_space

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
jq实现下拉列表跳转.html 946 Bytes
一键复制 编辑 原始数据 按行查看 历史
龚贤 提交于 2020-11-15 16:39 . 第一个版本
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<select id="friend">
<option value="">请选择</option>
<option value="http://www.baidu.com">baidu</option>
<option value="http://www.163.com">网易</option>
</select>
<script src="js/jquery3.5.js"></script>
<script>
$(function(){
$('#friend').change(function(){
if(this.value==''){
throw new TypeError('网址为空!');
}
// location.href = this.value; // 这种直接被重定向
// window.open(this.value); // 这种弹出可能存在被浏览器弹窗拦截程序阻止
//下面的方案不会被阻止
var form = document.createElement('form');
form.action = this.value;
form.target = '_blank';
document.body.append(form);
form.submit();
form.remove();
})
})
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gx0513/jquery_space.git
git@gitee.com:gx0513/jquery_space.git
gx0513
jquery_space
jquery_space
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385