gpt4 book ai didi

javascript - IE9 和 jQuery : Sorting list items works in modern browsers and IE7, 但不是 IE9。

转载 作者:行者123 更新时间:2023-11-29 22:31:15 25 4
gpt4 key购买 nike

不太确定这里发生了什么。它在 IE9 中不起作用。也许 IE9 不能正确处理 JavaScript?适用于 Chrome、FF、Safari、IE7(我已经实际测试过这些)

这是我的代码:http://jsfiddle.net/SMqR9/31/

不太复杂,就是嵌套排序。怎么了?我需要为 IE9 做些什么吗?

有问题的javascript:

$j = jQuery.noConflict();
$j(function() {

// these parts are here due to a z-index bug with IE
$j('ul').bind('mousedown', function(e) {
e.stopPropagation();
if ($j.browser.msie && $j.browser.version < '9.0') $j(this).closest('.section').css('z-index', '5000');
});
if ($j.browser.msie && $j.browser.version < '9.0') {
$j('ul').bind('mouseup', function(e) {
$j(this).closest('.section').css('z-index', '1000');
});
}
// the actual sorting code / jqueryUI sorting
$j("#sort_content_41,#sort_content_40,#sort_content_42,#sort_content_39").sortable({
connectWith: '.section-content',
dropOnEmpty: true,
zIndex: 1004,
cursor: 'crosshair'
});
$j("#sort_sections").sortable({
placeholder: "ui-state-highlight",
connectWith: '.sections',
axis: 'y',
zIndex: 1003,
cursor: 'crosshair'
});
});

$j(function() {
$j("section-content").sortable({
connectWith: "section-content",
dropOnEmpty: true
});
$j(".section-content").disableSelection();
});

最佳答案

解决方案是将 jQuery 更新到最新版本。旧版本在 IE9 下无法正常工作。

关于javascript - IE9 和 jQuery : Sorting list items works in modern browsers and IE7, 但不是 IE9。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6862074/

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