gpt4 book ai didi

javascript - 为什么表单标签拒绝点击事件?

转载 作者:行者123 更新时间:2023-11-28 05:12:59 26 4
gpt4 key购买 nike

我所拥有的 - 当用户选择下载按钮时,他们将被定向到基于其设备(android/iphone/desktop)的某个站点。我目前已将其设置为完美运行。我正在使用谷歌浏览器的设备工具栏来模拟设备。但是,当我将按钮标签放在表单标签内时,单击事件不会发生。什么都没发生。当表单标签被删除后,它就可以工作了。如何解决这个问题但仍然使用表单标签?谢谢

编辑 - 我已经做到了这些链接是表单标记内的操作,但这也不起作用。

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name='viewport' content='initial-scale=1'>
</head>
<body>

<div>
<form>
<button type='submit' onclick='func();'>Download</button>
</form>

</div>

</body>
<script>
function func(){
if (window.innerWidth >= 800 || window.innerHeight >= 600){ location.replace('aol.com');
}
if (navigator.userAgent.match(/Android/i) || navigator.userAgent.match(/BlackBerry/i) || navigator.userAgent.match(/Windows Phone/i) || navigator.userAgent.match(/webOS/i)) { location.replace('yahoo.com');
}
if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i))){ location.replace('google.com');
}
}
</script>

</html>

最佳答案

在表单中添加id并使用表单id提交表单

<form id="my_form" method="post" action="aol.com">
<button type='submit' onclick='return func();'>Download</button>
</form>

<script>
function func(){
if (window.innerWidth >= 800 || window.innerHeight >= 600){ location.replace('aol.com');
}
if (navigator.userAgent.match(/Android/i) || navigator.userAgent.match(/BlackBerry/i) || navigator.userAgent.match(/Windows Phone/i) || navigator.userAgent.match(/webOS/i)) { location.replace('yahoo.com');
}
if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i))){ location.replace('google.com');
}
}
// put this line for submit form
jQuery("#my_form").submit();

</script>

我希望这对你有帮助。

关于javascript - 为什么表单标签拒绝点击事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41215875/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com