0
我需要使用C#調用(window).load(function())
。無論如何,我可以做到這一點。任何腳本,你想與需要使用c#調用jQuery(window).load(function())#
我需要使用C#調用(window).load(function())
。無論如何,我可以做到這一點。任何腳本,你想與需要使用c#調用jQuery(window).load(function())#
註冊:
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);
}
}
沒有!這是不可能的。您不能在服務器端腳本中使用客戶端對象。欲瞭解更多信息 - Using JavaScript Along with ASP.NET
不確定你在這裏的意思。你能用一個你想要完成的小例子來澄清嗎? – asawyer
@asawyer我編輯了這個問題。 – Krishh
'asp.net'和'asp.net-mvc'是兩個截然不同的野獸。你在用什麼? – xanatos