$(function () {
$("#test").draggable({
handle: "#testheader",
containment: 'window'
});
});
$('p#exit').click(function () {
$('#test').hide();
});
});
<div id="test"><div id="testheader"><p id="exit">Exit</p></div></div>
当我单击 p 元素时,它不会退出,而是在我单击容器 div 时退出。