gpt4 book ai didi

jquery - IE 10 的 jQuery 问题

转载 作者:行者123 更新时间:2023-12-01 04:14:19 25 4
gpt4 key购买 nike

我在 IE10 中使用 jQuery 时遇到一些问题。有些脚本在该版本的 IE 中不起作用。在其他浏览器中(也在最旧的 IE 中)一切正常。下面是其中一个的代码。

jQuery.fn.firma_wpis = function(form,wymag){
var dur = 350;
var wymag='1';
if(this.attr('checked')==true){
$("#wpis_firma").show(dur);
}

我还添加了示例代码来查看它是否有效,但不幸的是没有

$(document).ready(function() {
alert("Works fine");
});

这是用户单击复选框时简单的隐藏显示事件。在IE10开发者工具中我发现这个错误:SCRIPT438:对象不支持属性或方法

最佳答案

尝试这个条件:

this.is(':checked')

即:

jQuery.fn.firma_wpis = function(form,wymag){
var dur = 350;
var wymag='1';
if(this.is(':checked')){
$("#wpis_firma").show(dur);
}

关于jquery - IE 10 的 jQuery 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16288368/

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