toElement似乎只适用于Chrome,而不是IE或FF

时间:2014-03-28 00:28:24

标签: jquery jquery-ui internet-explorer google-chrome

我有以下Javascript,它只适用于Chrome,我无法找出原因:

//makes appointments draggable
    $("._ts").sortable({
        connectWith: "._ts", 
        revert: "true",
        cancel: ".new_appt",

    stop: function(e){
        var element =  e.toElement; 
        var date = $(element).parents('.route_container').find('.date h2').html(); 
        var timeslot = $(element).parents('.timeslot').attr('id'); 
        var tAppt_id = $(element).attr('id'); 
        console.log("Date:."+date); 
        console.log("time:."+timeslot); 
        console.log("route:."+tAppt_id); 

        $.ajax({
            type: "post",
            dataType: "json",
            url: ajaxurl, 
            data:{action: "update_appointments", date: date, timeslot: timeslot, appt_id: tAppt_id},
            success: function(response){
                if(response.type == "success"){
                    console.log("Update appointment worked."); 
                    console.log("Date:."+response.date); 
                    console.log("time:."+response.timeslot); 
                    console.log("route:."+response.timeslot); 



                    $(this).parents('.delete_appt').hide(); 
                }
            }
        });
    }

});

问题在于变量datetimeslot和& tAppt_id返回undefined。这又适用于Chrome;但是,仅限Chrome。不能在IE或FF中工作。

我也尝试使用e.currentTargete.relatedTarget两种方法都没有效果。有人能告诉我我做错了什么吗?

1 个答案:

答案 0 :(得分:5)

看起来你正在使用jQuery-UI Sortable。在这种情况下,您将获得jQuery event对象作为事件处理程序的第一个参数。要获取事件目标元素,您需要使用target属性:

var element = e.target;