作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
jQTransform 和 jQery 1.4.2 有一个非常奇怪的问题。
当我在任何表单上使用 jQTransform 插件时,我的复选框将停止正常工作。
这是行为:
在创建这个问题之前我做了一些谷歌搜索,我发现this jQuery Forum Question/Answer
该解决方案对我不起作用,因为无法选择使用较低版本的 jQuery。
有谁知道如何使用 jQtransform 和 jQuery 1.4.2 解决这个问题???
我不知道版本之间发生了什么变化才能实现这种新的“行为”jQuery 1.4.2
重要提示:这只发生在 IE 中。与往常一样,Firefox 工作得很好。
最佳答案
我找到了这个问题的“解决方案”,不是很干净,但它至少适用于 ie7/8 ...只需复制/粘贴以下 block “$input.change(function(){...”:
var ieStep=1;
$input.change(function(){
if($.browser.msie){
if((ieStep%2) == 1){$input.trigger("click"); checkStep = 1;} else {ieStep++;}
}
和“aLink.click(function(){...”:
aLink.click(function(){
//do nothing if the original input is disabled
if($input.attr('disabled')){return false;}
//trigger the envents on the input object
if($.browser.msie){
if((ieStep%2) == 0){$input.trigger("click"); checkStep=0;}
$input.trigger("change");
}
else {
$input.trigger("click").trigger("change");
}
ieStep++;
return false;
});
仅此而已
法比安
关于jquery - jQtransform IE 上的复选框点击问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3322118/
我是一名优秀的程序员,十分优秀!