我正在通过转发器创建动态链接,并在OnPreRender绑定来自服务器的链接。但是颜色框只有在第一次点击后才有效。我正在使用 live 来绑定动态链接。
代码如下:
protected virtual void BindJQuery()
{
string jquery = string.Empty;
jquery = StoreLocation() + "Scripts/jui/jquery-1.8.0.min.js";
Page.ClientScript.RegisterClientScriptInclude(jquery, jquery);
}
protected virtual void BindColorBox()
{
string jquery = null;
jquery = StoreLocation() + "Scripts/colorbox/jquery.colorbox-min.js";
Page.ClientScript.RegisterClientScriptInclude(jquery, jquery);
}
protected void BindColorBoxC()
{
StringBuilder urlScript = new StringBuilder();
urlScript.AppendLine("<script type=\"text/javascript\">");
urlScript.AppendLine("$('.iframeC').live('click',function(e){ e.preventDefault(); $(this).colorbox({width: '660px', height: '416px', iframe: true}); });");
urlScript.AppendLine("</script>");
string js = urlScript.ToString();
Page.ClientScript.RegisterClientScriptBlock(GetType(), "colorboxC", js);
}
protected override void OnPreRender(EventArgs e)
{
BindJQuery()
BindColorBox();
BindColorBoxC();
base.OnPreRender(e);
}
编辑:
我已经替换了以下行:
urlScript.AppendLine("$('.iframeC').live('click',function(e){ e.preventDefault(); $(this).colorbox({width: '660px', height: '416px', iframe: true}); });");
和:
urlScript.AppendLine("$(document).on('click','.iframeC',function(e){ e.preventDefault(); $(this).colorbox({width: '660px', height: '416px', iframe: true}); });");
但结果是一样的。它仍然无法在第一次点击时工作。并且没有覆盖,因为它是一个新的页面加载。
感谢任何形式的帮助。提前致谢。