码迷,mamicode.com
首页 > 编程语言 > 详细

如果把带有html的标记的字符串从服务端传到页面上,需要对其进行编码。Ajax.JavaScriptStringEncode()

时间:2016-11-27 19:41:49      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:class   doc   bsp   需要   内容   ring   tostring   size   string   

controller:

            StringBuilder s = new StringBuilder();
            string a = "<script>alert(‘我StringBuilder‘)</script>文档内容";
            s.AppendFormat("<h1>{0}</h1><h1>测试</h1>", a);
            string t=s.ToString();
            ViewBag.newMes = t;

cshtml:

    <div id="haha"></div>
<script type="text/javascript">
    $(document).ready(function () {
        var newMes = @Ajax.JavaScriptStringEncode(ViewBag.newMes);
        document.getElementById("haha").innerHTML =newMes;
    });
</script>

 

如果把带有html的标记的字符串从服务端传到页面上,需要对其进行编码。Ajax.JavaScriptStringEncode()

标签:class   doc   bsp   需要   内容   ring   tostring   size   string   

原文地址:http://www.cnblogs.com/jinzhaoyoujiu/p/6106846.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!