1 $(".modal").each( function (){ 2 $( this ).draggable({ 3 handle: ".modal-header" // 只能点击头部拖动 4 }); 5 $( this ).css("overflow", "hidden"); // 防止出现滚动条,出现的话,你会把滚动条一起拖着走的 6 });
1 $(".modal").each(function(){ 2 $(this).draggable({ 3 handle: ".modal-header" // 只能点击头部拖动 4 }); 5 $(this).css("overflow", "hidden"); // 防止出现滚动条,出现的话,你会把滚动条一起拖着走的 6 });