0

我正在创建一个 div,然后我在其中写入一条消息以显示,但是这次我的 div 还必须包含 ID,它是动态的,所以我想动态地写入消息。但我无法获得如何在我的 jquery 函数中编写消息。下面是我的代码:

 $(function confirm () {
                         $('#update-dialog').dialog({
                         modal: true,
                         buttons: {
                          Ok: function () {
                          $(this).dialog('close');
                            }
                          }
                          });
                        });

我的 Div 是:

 <div id="update-dialog" title="Mortgage Application Lock" style="display: none">
   <%-- <span class="textfont">This Mortgage Application is currently in use.</span>--%>
</div>

它必须有来自功能的消息,而不是硬写的。

4

1 回答 1

0
$( "#update-dialog" ).dialog({open: function( event, ui ) { $(this).html("my recurring message other than hard written with html"); } });
于 2013-01-29T09:01:26.510 回答