需要调用jQuery(窗口).使用c#加载(function())

本文关键字:使用 加载 function 窗口 调用 jQuery | 更新日期: 2023-09-27 18:11:14

我需要使用c#调用(window).load(function ())。有什么方法可以让我完成这个吗?

需要调用jQuery(窗口).使用c#加载(function())

RegisterStartupScript中注册任何脚本:

protected void Page_Load(object sender, EventArgs e)
{
    // Define the name and type of the client scripts on the page.
    String csname1 = "PopupScript";
    Type cstype = this.GetType();
    // Get a ClientScriptManager reference from the Page class.
    ClientScriptManager cs = Page.ClientScript;
    // Check to see if the startup script is already registered.
    if (!cs.IsStartupScriptRegistered(cstype, csname1))
    {
        StringBuilder cstext1 = new StringBuilder();
        cstext1.Append(@"$(document).ready(function() {
                                // Handler for .ready() called.
                              });");
        cs.RegisterStartupScript(cstype, csname1, cstext1.ToString(), true);
    }
}

不!这不可能。不能在服务器端脚本中使用客户端对象。欲了解更多信息,请阅读-使用JavaScript与ASP。净