gpt4 book ai didi

JavaScript 不触发

转载 作者:行者123 更新时间:2023-12-01 03:36:50 25 4
gpt4 key购买 nike

我在结账时使用此代码,这样如果有人选择密歇根州作为该州,则会显示一个链接以获取免税文件。但是,控制台给我一个错误,提示缺少右括号。我没看到。

    function ready(fn) {
if (document.readyState != "loading"){
fn();
} else if (document.addEventListener) {
document.addEventListener("DOMContentLoaded", fn);
} else {
document.attachEvent("onreadystatechange", function() {
if (document.readyState != "loading")
{fn();
}
}
);

ready(function() {if(document.getElementById("pay-with-po")){
document.querySelector("select[name="region_id"]").onchange = function(){
if (document.querySelector("select[name="region_id"]").value==33){
alert("MICHIGAN!!!"); //or another action to display a div/title etc...
}
}
}});

最佳答案

您遇到了问题:

  if (document.readyState != "loading")
{fn();
^ This one is open and not closed
}

关于JavaScript 不触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44204496/

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