enter code here
我的 jquery ui 对话框包含一个 iframe,并有两个按钮选项,应用和关闭。这是我的 javascript 生成的:
$(function () {
$(".btn").click(function() {
var $this = $(this);
$('<iframe id="PDFDialog" frameborder="0" src="' + this.href + '" />').dialog({
title: ($this.attr('title')) ? $this.attr('title') : 'External Site',
autoOpen: true,
width: 700,
height: 600,
modal: true,
resizable: true,
buttons: {
Apply: function () {
$("#<%= applyHiddenBtn%>").click();
$(this).dialog("close");
},
Close: function () {
$(this).dialog("close");
}
}
}).width(650).height(550);
return false;
});
});
我不确定如何执行我为对话框按钮“应用”准备的代码。作为尝试<asp:Button runat="server" ID="applyHiddenBtn" OnClick="applyHiddenBtn_Click"/>
,我尝试同时触发另一个服务器按钮。
目标是触发这个:
Sub applyHiddenBtn_Click(sender As Object, e As EventArgs)
lblTest1.Text = "HelloWorld!!!1!"
End Sub
请问有什么帮助吗?