我正在尝试在确认对话框的文本区域中输入用户文本。有什么想法吗?
alert ($('#optionalmessage').text());
似乎没有这样做。
$(doument).ready(function () {
$("#click").click(function (event) {
$("#dialog-confirm").dialog({
resizable: false,
height: 140,
modal: true,
buttons: {
"Send it ": function () {
alert ($('#optionalmessage').text());
$(this).dialog("close");
},
Cancel: function () {
$(this).dialog("close");
}
}
});
});
我还需要为这个 textarea 创建更多空间(比它目前在小提琴中的空间多)但是使用
<textarea rows="4" cols="50">
它几乎消失了......