本文介绍了来自C#代码的Sexy.alert的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用一个名为SexyAlertBox的jQuery插件( [])



这是有效的:

i'm using a jQuery plugin named SexyAlertBox (http://www.coders.me/ejemplos/sexy-alert-box/[^])

This is working:

<input type="button" id="btnHello" onclick="Sexy.alert('Hello!');" />





但我需要从代码隐藏文件中调用此函数。通常我用这个:





But i need to call this function from the code behind file too. Usually i use this:

protected void btnError_Click(object sender, EventArgs e)
{
   ClientScript.RegisterStartupScript(this.GetType(), "miscript", "alert('This is an alert from a                                                                                                                  postback!');", true);
}



但是没有使用Sexy.alert功能。

有什么想法吗?谢谢。


But isn't working with the Sexy.alert function.
Any ideas? Thank you.

推荐答案


这篇关于来自C#代码的Sexy.alert的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 15:33