Jquery拖放不在chrome和ie9中工作

时间:2012-08-03 14:13:54

标签: jquery jquery-ui jquery-plugins

我正在使用jquery的拖放功能。它在firefox中运行良好但在chrome和ie9中失败。

以下是我正在使用的jquery lib的版本:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="en" />
<script src="http://code.jquery.com/jquery-latest.js"></script> 
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="<?php echo Yii::app()->request->baseUrl; ?>/js/jquery-ui-1.8.2.custom.min.js"></script>

这是我的拖动代码:

$(function() {
    $(".item").draggable({
            revert: true
    });
    $("#mail-circle-wraper").droppable({
            tolerance: 'touch',
            over: function() {   

                   $(this).removeClass('out').addClass('over');
            },
            out: function() {           
                $(".item").draggable({
                    revert: false
            });
                    $(this).removeClass('over').addClass('out');
            },
            drop: function() {
                    bootbox.confirm("Add this person to circle ?", function(confirmed) {

                        // do somthing
                    });

                    $(this).removeClass('over').addClass('out');
            }
    });
});

提前致谢:)

2 个答案:

答案 0 :(得分:1)

尝试将jquery库更改为:

https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js

https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/jquery-ui.min.js

让我知道这是否有效。

答案 1 :(得分:1)

请添加以下2个库,因为它在所有浏览器中都能正常工作。我测试了它。

Jquery.min.js

Jquery-ui.min.js