jqueryダイアログボックスがあります。起動すると、入力フィールドと送信フィールドがいくつか表示されます。その中に、選択した値の関数でチェーンしたいものをテキスト領域にチェーンする選択ドロップダウンがあります。 taxtareaにはカスタムテキストを入力する必要があります。私の問題how to declare a .change event inside of dialog?
how to declare <textarea>$variable_text</textarea>
私が試したこと
// Init Dialog
$('a.open_dialog').click(function() {
$('<div />').appendTo('body').load($(this).attr('href')).dialog({
title: $(this).attr('title'),
modal: true,
draggable: false,
width: 800,
position: 'top'
});
$('select#state').change(function() {
// assign the value to a variable, so you can test to see if it is working
var selectVal = $('select#state :selected').val();
var emailMessage = 'lorem Ipsume dolores macus nacus';
$("textarea#EmailMessage").val(emailMessage);
alert( $("textarea#EmailMessage").val(emailMessage));
});
return false;
});