我有一个div#test
,我用它绑定一个dblclick event to opens a jquery ui dialog
,现在我想打开
那dialog inside a floating div
( 表示一个 div 其位置是绝对的并放置在
屏幕中心)当dblclick event triggers
打开div#test
类似:
line #1 $("#test").trigger("dblclick"); => open the dialog
line #2 $("floatingdiv").html("I want to open the dialog inside
this div after executing the line #1);
帮我?谢谢。