1

我在 jQuery 对话框和 jsp 页面中工作,我的问题是当我从父窗口单击按钮时,在子窗口中加载 body onload 功能后,jQuery 对话框将在那里打开,但在子窗口中,body onload 功能仅 jQuery 对话框 ui 不起作用仅显示有人帮助我吗?

父窗口是:

<a id="composeeditors" href="javascript:void(0)" onClick="callRequirementParsingInfo();">Send</a>

jQuery代码是:

$('#composeeditors').load("/jsp/parsing.jsp?",function(){
    $('#compose_editor').dialog({
        autoOpen: false,
        resizable: false,
        position: ['center',150]
    });
});

子窗口是:

<div id="compose_editor" data-options="title:'Requirement Parsing Informations'" style="padding:0px;width:700px; height:600px; overflow:auto;">
</div>
4

1 回答 1

0

尝试改用 open 或 create 事件:

http://api.jqueryui.com/dialog/#event-open

于 2012-12-12T10:59:04.223 回答