控制器
public ActionResult GetCategories()
{
var htmlText = new StringBuilder();
var scriptText = new StringBuilder();
htmlText.Append("Hello world");
scriptText.AppendFormat("document.write({0});", htmlText.ToString());
var content = new ContentResult();
content.Content = scriptText.ToString();
return content;
}
看法
<script src="/Home/GetCategories" type="text/javascript" language="javascript"/>
它在 FF 上运行良好,但在 IE 上运行良好。