0
我已經創建了一個博客。特定的羣組成員可以在該博客中聊天。每條評論都有一個動態創建的鏈接按鈕(「編輯」 - >文本)打開JQuery對話框onclick動態創建鏈接按鈕
單擊編輯 linkbutton,我想要一個對話框彈出。我嘗試了很多,但無法繼續。請幫忙。
以下是我如何嘗試此操作的代碼片段。
在cs文件:(這是我怎麼動態創建的鏈接按鈕) (我在我的jQuery的使用lnkButtons類
LinkButton lnkUpdateComment = new LinkButton();
lnkUpdateComment.ID = "" + objBridgeNotes.BridgeNotesId;
lnkUpdateComment.Text = "edit";
lnkUpdateComment.Attributes.Add("class", "lnkButtons");
lnkUpdateComment.Click += new EventHandler(lnkUpdateComment_Click);
.js文件:
$(document).ready(function() {
$(".lnkButtons").live("click", function() {
$("#divEditComment").dialog("option", "title", "Edit the Comment");
$("#divEditComment").dialog("open");
return true;
});
$(function() {
var dlg = $("#divEditComment").dialog({
autoOpen: false,
show: "blind",
hide: "blind",
//height: 450,
minWidth: 400,
//position: ['right', 210],
buttons: {
"Update Note": function() {
var Updates = btnSubmitComment.replace(/_/g, '$');
__doPostBack(Updates, '');
}
}
});
dlg.parent().appendTo(jQuery("form:first"));
});
});
in .aspx文件:
<div id="divEditComment">
<asp:UpdatePanel ID="updComments" runat="server">
<ContentTemplate>
<div>
<table width="100%" style="text-align: center">
<tr>
<td>
<div id="divComments" runat="server">
</div>
</td>
</tr>
</table>
</div>
</ContentTemplate>
</asp:UpdatePanel>
</div>
沒有運氣Rituraj。即使在這裏也沒有進入功能。 –
在你的html裏.lnkButtons –
和你的jQuery版本應該是最新的 –