我正在尝试将 textarea 插入到 JQuery 对话框中,并且我对如何设置必须使用的对话框的语法感到困惑(顺便说一下,我没有编写对话框,我只是想进行更改给它)。我在这个网站上查看了与此类似的其他一些问题,但他们似乎没有回答我的问题,所以我希望有人可以为我阐明这一点。
这是代码:
$('.rejection_toggle').button().click(function(event) {
var $dialog = $('<div />', {
text: Drupal.t('Are you sure you want to reject this form? If so, then please leave a comment as to why you are rejecting it.')
})
var $button = $(this);
$('body').append($dialog);
$dialog.dialog({
title: Drupal.t('Reject this form?'),
buttons: {
'Reject': function (event) {
var $submitID = $button.attr('id').replace('rejection-toggle', 'approval-buttons-reject'),
$submitButton = $('#' + $submitID);
$submitButton.click();
$dialog.dialog('close');
},
'Cancel': function (event) {
$dialog.dialog('close');
}
}
});
return false;
});
那么我将如何在按钮之前插入一个 textarea 呢?
谢谢。