bootstrap modal 点击头部移动

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

猜你喜欢

转载自www.cnblogs.com/wjlwo2ni/p/10562946.html
今日推荐