我正在创建一个 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>
它必须有来自功能的消息,而不是硬写的。