我有一个 javascript 函数,它正在打开一个 jquery 对话框:
function new_popup() {
var editor = "victorio"; //want to give
var sex = "male"; //want to give
$("#new-dialog-form").dialog({
autoOpen: false,
height: 700,
width: 800,
modal: true,
title: "New Dialog",
buttons: { //.....buttons whatever.....
},
close: function() {
}
});
$("#new-dialog-form").load('<%=newPopupUrl%>').dialog('open');
}
我想为新对话框提供editor
和sex
值,该对话框打开“new_frame.jsp”,它有两个带有 ID 的标签:
<label class="form_label" id="editor"/>
<label class="form_label" id="sex"/>
因此,当我们打开新对话框时,这两个标签将使用给定的值自动完成。
如何为对话框提供值,以及如何以及在何处获取和设置新 jsp 中的给定值?谢谢你的帮助!