我做了这个脚本,从后面的代码中打开了一个花哨的盒子,但它总是说“ u is undefined” ...不确定是怎么回事
StringBuilder sb = new StringBuilder();
sb.AppendLine("<script>");
sb.AppendLine("$.fancybox('../Popups/EndedProduction.aspx?Iframe', {");
sb.AppendLine("'width': 557,");
sb.AppendLine("'height': 244,");
sb.AppendLine("'transitionIn': 'none',");
sb.AppendLine("'transitionOut': 'none'");
sb.AppendLine("});");
sb.AppendLine("</script>");
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "Completed", sb.ToString());
最佳答案
查看文档的生成源(例如,在Firebug中使用HTML-tab),并确保没有两次嵌入fancybox-script。
关于c# - fancybox u是未定义的,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4157894/