gpt4 book ai didi

javascript - jquery div onclick调用函数

转载 作者:行者123 更新时间:2023-11-29 18:14:01 25 4
gpt4 key购买 nike

我需要设置一个 onclick,如果您点击 ID 为“version”的 div,它会调用以下脚本。

html

<div id="version">CONTINUE</div>

js

if (/Android\s+([\d\.]+)/.test(navigator.userAgent)){ 
var anversion=new Number(RegExp.$1)
if (anversion=<3)
window.location = 'main2.html'
}
else
window.location = 'main.html'

最佳答案

$("#version").click(function() {
// Your code here...
});

有关详细信息,请参阅 the jQuery API on .click()

编辑:我还更正了您的代码。然后看起来像这样:

if(/Android\s+([\d\.]+)/.test(navigator.userAgent)) { 
var anversion = parseInt(RegExp.$1);
if(anversion <= 3) {
window.location.href = 'main2.html';
} else {
window.location.href = 'main.html';
}
}

关于javascript - jquery div onclick调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9183717/

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