Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 加载回调后 jQuery ui 对话框更改标题
在此 UI 对话框中提交表单后,我喜欢从 UI 对话框更改标题。所以在load我应该建议之后的回调函数中,但我已经尝试过并且没有结果。
load
该option方法将在创建对话框后更改对话框的属性。
option
因此,你可以写
$(whatever).dialog('option', 'title', 'New Title');
你也可以使用它,在打开它之前
$("#YourContainer").data('title.dialog', ' I am the new title');