我有一个事件,选择时会向我的引导 html 编辑器添加正确的文本值。问题是每次选择时都会添加 html 工具栏,所以我有很多工具栏。我想在创造之前毁灭,但我真的不知道怎么做。代码如下所示
$('a.open_dialog').click(function(e) {
e.preventDefault();
var tabsDiv=$('<div />').appendTo('body').load($(this).attr('href'),function(){
$('#tabs').tabs();
$('select#state').live('change',function() {
$('.textarea').empty().wysihtml5().data("wysihtml5").editor.setValue(getCustomText($('select#state').val()));
});
$( "#datepicker" ).datepicker();
})
.dialog({
title: $(this).attr('title'),
modal: true,
draggable: false,
width: 800,
position: 'top',
buttons: {
"Speichern": function() {
open: { $(this).addClass('b') }
$.ajax({
type: "POST",
url: 'action.php',
data: $("#edit_form").serialize(), // serializes the form's elements.
success: function(data)
{
alert('Der Datensatz wurde gespeichert!'); // show response from the php script.
},
error:function(){
alert('Es gibt ein Fehler bei Daten übetragung!');
}
});
},
"Email schicken": function() {
$.ajax({
type: "POST",
url: 'mailer.php',
data: $("#contactform").serialize(), // serializes the form's elements.
success: function(data)
{
alert('Das Email wurde geschickt!'); // show response from the php script.
},
error:function(){
alert('Es gibt ein Fehler bei Daten übetragung!');
}
});
},
"Rechnung herunterladen":function() {
$.ajax({
type: "POST",
url: 'docsx.php',
data: $("#edit_form").serialize(), // serializes the form's elements.
success: function(data)
{
window.location.href ='rechnung.docx'; // show response from the php script.
},
error:function(){
alert('Es gibt ein Fehler bei Daten übetragung!');
}
});
}
},
close: function() {
tabsDiv.remove() // so I can reload again
location.reload(true);
// allFields.val( "" ).removeClass( "ui-state-error" );
},
});
return false;
});