我试图找出如何正确编写jQuery代码,以便我可以从后面的ASP.NET代码中调用它.
我不希望它被jQuery click事件触发,我想触发jQuery函数—>“在我的控件后面的代码中显示对话框”.
$(document).ready(function () {
$("#LinkButton1").click(function(){
$("#hightlight_show1").toggle();
});
var dialog1 = $("#Add").dialog({
autoOpen: false,width: 620,height: 400
});
// Move the dialog back into the
我尝试过这样的事情,但它对我不起作用
$(document).ready(function () {
$("#LinkButton1").click(function () {
$("#hightlight_show1").toggle();
});
var dialog1 = $("#Add").dialog({
autoOpen: false,height: 400
});
// Move the dialog back into the
我在使用Page.ClientScript.RegisterStartupScript()的代码中指定了这个.
Page.ClientScript.RegisterStartupScript(
this.GetType(),"a","a();",true
);
最佳答案
原文链接:https://www.f2er.com/jquery/428219.html