在我的模态对话框中,当我使用WYMeditor进行编辑时,我想单击确定按钮并让它更新Textarea。我没有看到如何在Jquery UI模式对话框中使用它的任何示例,所以我有点卡住了。
答案 0 :(得分:1)
只要我知道它的实例,我就可以这样设置它。
$('#editContent').wymeditor();
var wym = WYMeditor.INSTANCES[0];
$('#dialog').dialog({
buttons: {
Ok: function() {
wym.update();
var newContent = $('#editContent').val();
$( this ).dialog( "close" );
},
Cancel: function() {
$( this ).dialog( "close" );
}
},
close: function() {
//$( this ).dialog( "close" );
}
});
$('#dialog').dialog({
buttons: {
Ok: function() {
wym.update();
var newContent = $('#editContent').val();
$( this ).dialog( "close" );
},
Cancel: function() {
$( this ).dialog( "close" );
}
},
close: function() {
//$( this ).dialog( "close" );
}
});
似乎工作......最后。