在我们的ASP.NET MVC3项目中,我们编写了几个自定义
HTML Helper扩展方法,它基本上呈现了一些复合控件(比如文本和带有一些所需样式的标签).现在我们也想要渲染一些
javascript和HTML标签,但看起来MVC
HtmlString不会将javascript测试呈现为javascript!从自定义HTML帮助程序渲染动态
JavaScript的任何选项或替代方法?
解决方法
这对我来说可以 :)
namespace MvcApplication1.ExtensionMethods { public static class MyExtensionMethods { public static MvcHtmlString SomeJavascript(this HtmlHelper helper) { StringBuilder sb = new StringBuilder(); sb.Append("<script> alert('testing 123')</script>"); return MvcHtmlString.Create(sb.ToString()); } } }
在我的index.cshtml中我称之为:
@using MvcApplication1.ExtensionMethods .... @Html.SomeJavascript()
它显示了弹出窗口:)