-1
如何動態更改對話框的內容。模態對話框
我有一張擁有所有用戶信息的表格。對於每個記錄用戶,電子郵件都是超鏈接。當用戶點擊任何電子郵件時,對話框必須打開並點擊記錄的詳細信息。我們如何做到這一點?請指導我。
問候, Sitaram
如何動態更改對話框的內容。模態對話框
我有一張擁有所有用戶信息的表格。對於每個記錄用戶,電子郵件都是超鏈接。當用戶點擊任何電子郵件時,對話框必須打開並點擊記錄的詳細信息。我們如何做到這一點?請指導我。
問候, Sitaram
阿賈克斯!我摒棄了大部分方法,但這應該讓你動起來。
$('.email_link').click(function(e){
e.preventDefault();
var id = $this.data('email_identifier');
data = doSomeAjaxCallWithThisUniqueId(id); //have some ajax call to get you email based data
openModal() //create your modal.
$(.modal-body).html(data); // then after, populate it.
})
你試過的代碼在哪裏? –