2017-10-12 40 views
0

我工作的一個項目,這是一個問題級聯動態整數id爲

function calldiv(c) 
{ 
    $("modal_dialog").dialog({ 
     title: "Approach with your deal", 
     buttons: { 
      Close: function() { 
       $(this).dialog('destroy') 
      } 
     }, 
     modal: true 
    }); 

} 

在這裏,我要的是與modal_dialog上運行時,即當c = 1附着的C值的相關代碼那麼下一行就會變成modal_dialog1。 由於

+0

下一行裝置??。你能解釋一下你想要的嗎? –

+0

$(「modal_dialog」+ c).dialog({...})? – zfrisch

回答

0

c的毗連與用於靶向modal_dialog字符串:

function calldiv(c) 
{ 
    $("modal_dialog"+c).dialog({ 
     title: "Approach with your deal", 
     buttons: { 
      Close: function() { 
       $(this).dialog('destroy') 
      } 
     }, 
     modal: true 
    }); 

}