我正在处理一个项目,这是问题的相关代码
function calldiv(c)
{
$("modal_dialog").dialog({
title: "Approach with your deal",
buttons: {
Close: function () {
$(this).dialog('destroy')
}
},
modal: true
});
}
这里我想要的是在运行时将c的值附加到modal_dialog,即如果c = 1则下一行变为modal_dialog1。 感谢
答案 0 :(得分:0)
Concat c
,其字符串用于定位modal_dialog
:
function calldiv(c)
{
$("modal_dialog"+c).dialog({
title: "Approach with your deal",
buttons: {
Close: function () {
$(this).dialog('destroy')
}
},
modal: true
});
}