Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在开始拖动时显示一条警告消息,为此我搜索了许多帖子、博客、Jquery 文档和不同的站点。但我没有得到任何适当的答案。
出我搜索的内容,我尝试使用
$("#myDiv").draggable(function(){ start: function( event, ui ) { console.log("krishna"); } });
任何人都可以为此建议我一些解决方案。
$( "#myDiv" ).draggable( {start: function() {alert("hi");} });
演示
$( "#myDiv" ).draggable({ start: function( event, ui ) { alert('drag it'); } });