使用 jQuery 对话框打开一个模态框来确认,例如从朋友中删除特定用户。我想在模态框中使用朋友的名字(目前我在链接php
的name
-tag 中打印它并使用 jQuery 从那里获取它)。
//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 中)的最佳方式?
任何帮助都非常感谢,在此先感谢您!!:)