从http://jqueryui.com/demos/resizable/#default
复制了以下代码<meta charset="utf-8">
<style>#resizable { width: 150px; height: 150px; padding: 0.5em; }
#resizable h3 { text-align: center; margin: 0; }
</style>
<script>
$(function() {
$( "#resizable" ).resizable();
});
</script>
<div class="demo">
<div id="resizable" class="ui-widget-content">
<h3 class="ui-widget-header">Resizable</h3>
</div>
</div>
输出这个。
我想捕获每个光标位置的双击事件,以便
答案 0 :(得分:2)
处理程序具有特定的classNames:
ui-resizable-se//bottom right
ui-resizable-s//bottom
ui-resizable-e//right
您可以选择它们并绑定dblclick:
$('.ui-resizable-se').dblclick(function(){alert('clicked bottom right handle');})
使用$(this).parent()
答案 1 :(得分:2)
使用firebug找出你附加事件的元素(例如:.ui-resizable -e - self explanation)并使用例如:
$(".ui-resizable-e").dblclick(myFunctionToResize);这是你的意思吗?