jQuery ダイアログを使用してモーダル ボックスを開き、特定のユーザーを友達から削除するなどの確認を行います。モーダルボックスで友達の名前を使用したいと思います(現在、リンクのタグで印刷し、php
jQueryname
を使用してそこから取得しています)。
//create the html for the modal box
var dialog_html_ignore = $('<div id="dialog-confirm" title="Ignore Friend Request?"><p>Some text... ignore [put the name here], ...?</p></div>')
//set up the jQuery dialog
var dialog_ignore=$( dialog_html_ignore ).dialog({
autoOpen:false,
resizable: false,
modal: true,
buttons: {
"No": function() {
$( this ).dialog( "close" );
},
"Yes": function() {
window.location.href = targetUrl;
}
}
});
//open the dialog on click event
$('.click_ignore').click(function() {
window.fName = $(this).attr("name");
alert(fName); /* this gives me the right username */
dialog_ignore.dialog('open');
return false;
});
ユーザー名変数を実際にテキストの一部として(モーダルボックスのhtmlで)使用する最良の方法は何ですか??
どんな助けでも大歓迎です、事前に感謝します!! :)