0

私は持っています、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);

助けて?ありがとう。

4

1 に答える 1

0

最初にtestdiv を入れfloatingdivます。

$("#test .ui-dialog-content").bind("dialogopen", function() {  
    // Reposition dialog, 'this' refers to the element the even occurred on.
    $(this).parent('div').css('position', 'relative');
});
于 2012-06-01T12:11:40.213 に答える