asp.net mvc <tr>变&lt;tr/&gt; @Html.Raw 作用

遇到的问题:列表页上有查询条件,是通过将其存入到model中实现的。代码如下:
<input id="inputBookShop" type="text" class="u-iptm" value="" name="inputBookShop"  runat="server"  readonly="readonly"/>
在JS中给它绑定:

$(function () {
        if ("" != "@Model.nBookShopName") {
            $("#inputBookShop").val("@Model.nBookShopName");
        }
}
这个样子的话,会出现一个问题:若是在查询条件输入输入带html标签的文本,如“<tr>书店名”,点击查询后,
查询输入框中的内容就会变成“&lt;tr/&gt;书店名"。

解决方案是改一下JS绑定,改成:
$(function () {
        if ("" != "@Model.nBookShopName") {
//        alert("@Model.nBookShopName");
            $("#inputBookShop").val("@Html.Raw(Model.nBookShopName)");
        }
}
这样,alert出来的虽然是带&lt的,但是经@Html.Raw()后在搜索框中显示的还会显示原文本。

以下:

(1)来自:http://stackoverflow.com/questions/17772553/razor-html-raw-do-not-output-text

I have tried all solution proposed to other, similar questions but none of them seems to work. In essence I am trying to display a table filled with data from collection of models. That in itself is not a problem, however I would like to force razor to generate it always in 3 columns (no matter how many elements we have). My original idea was to do it that way:

 <table class="projects-grid">
    <tr>
    @for(int i = 0; i< Model.Count(); i++) 
     {
         if (i != 0 && i % 3 == 0) 
         {
             Html.Raw("</tr><tr>");
         }
        var item = Model.ElementAt(i);
        <td class="project-tile"> 
            @Html.DisplayFor(modelItem => item.Title)                
        </td>        
    }
    </tr>    
</table>

So in essence every third element I would like Razor to output "" string to add another row to the table. All seems to work fine other than this sting is not present in page source. In debug I can see that this line

 Html.Raw("</tr><tr>");

Is actually called, but no output in generated page is present.

Any help? Many thanks in advance....



 Answers



7 down vote accepted

The reason it's not outputing is because of the context of the razor syntax being executed. In your ifblock, all code runs as if you were in a regular C# context and the line:

Html.Raw("</tr><tr>");

Returns an MvcHtmlString but you are not doing anything with it. You need to enter an output context:

@Html.Raw("</tr><tr>");

(2)来自:http://blog.sina.com.cn/s/blog_666b934501017bgg.html

@Html.Raw() 方法输出带有html标签的字符串,如:
@Html.Raw("<div style='c olor:red'>输出字 符串</div>")
结果: 输出字符串

(3)来自:http://blog.csdn.net/shatamadedongxi/article/details/8756406

比如有个字符串是这样的<font color='red'>红字</font>

如果是用@Html.Raw('<font color='red'>红字</font>'),就会显示出红色的”红字“,不用的话会直接显示这段html字符串(<font color='red'>红色文字</font>)

我遇到的问题是:

我在后台定义了一个变量 string a="<div><input type="text"  value="你好" /></div>";

然后在js 里写

var strHtml='@a';

$("#ruleDetaile").append(strHtml);

结果显示处理的是:<div><input type="text"  value="你好" /></div>。而我想好的效果是:一个文本框里写着你好

百思不得其解  然后问了我老大 他改成了:var strHtml='@Html.Raw(a)';   这样就可以了




 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值