C#后台调用JS
方法1:
<asp:Literal ID="ltScript" runat="server"></asp:Literal>
<asp:Literal ID="ltScript" runat="server"></asp:Literal>
private void Button1_Click(object sender, System.EventArgs e)
{
ltScript.Text = "<script type=\"text/javascript\">你要执行的js函数;</script>";
}
方法2:
ClientScript.RegisterStartupScript(this.GetType(), "LoadPicScript", "<script>alert('JS代码');</script>");
作者:sy
出处:http://www.cnblogs.com/sydeveloper
QQ:522733724
本页版权归作者和博客园所有,欢迎转载,但未经作者同意必须保留此段声明,
且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利