码迷,mamicode.com
首页 > Web开发 > 详细

html title属性

时间:2015-05-07 23:36:36      阅读:490      评论:0      收藏:0      [点我收藏+]

标签:

 

<table class="table table-hover table-striped">
@foreach (var article in Model)
{
<tr>
<td>
<a href="@Url.Action("ShowArticle", "Article", new { ArticleID = article.ArticleID, area = "" })" title="@article.Title"> @*title属性这些信息通常会在鼠标移到元素上时显示一段工具提示文本(tooltip text)。*@
@{
string _articleTile = article.Title;
if (_articleTile.Length > 17)
{
_articleTile = article.Title.Substring(0,15) + "……";
}

<text>@_articleTile</text>
}
</a>
</td>

</tr>


}
</table>

html title属性

标签:

原文地址:http://www.cnblogs.com/liuyuanhao/p/4486147.html

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