C# mvc razor 文本域内字体加粗,斜体,如何实现,谢谢
C#mvcrazor文本域内字体加粗,斜体,如何实现,谢谢了。就是C#mvc.cshtml的网页,要给一个文本域加内容编辑前台<html><head><title>文本框...
C# mvc razor 文本域内字体加粗,斜体,如何实现,谢谢了。
就是C# mvc .cshtml的网页,要给一个文本域加内容编辑
前台
<html> <head><title>文本框字体选择</title> </head> <body >
<textarea id='content' style="width:75%;height:260px;">这里是变化的字体</textarea>
</body> </html>
还有就是加个超链接,点击这些,文本域内文字格式会变化插入超链接,会选择连接地址
后台
using System.Web.Mvc;
namespace MvcApplicationTextStyle.Controllers{ public class TextstyleController : Controller {
public ActionResult Index() { return View(); }
public ActionResult test() { return View();//这个是前台视图回传 }
}} 展开
就是C# mvc .cshtml的网页,要给一个文本域加内容编辑
前台
<html> <head><title>文本框字体选择</title> </head> <body >
<textarea id='content' style="width:75%;height:260px;">这里是变化的字体</textarea>
</body> </html>
还有就是加个超链接,点击这些,文本域内文字格式会变化插入超链接,会选择连接地址
后台
using System.Web.Mvc;
namespace MvcApplicationTextStyle.Controllers{ public class TextstyleController : Controller {
public ActionResult Index() { return View(); }
public ActionResult test() { return View();//这个是前台视图回传 }
}} 展开
3个回答
2013-07-08
展开全部
<style type="text/css">
input{
font-weight:bold;
font-style:italic;
}
</style>
css会用吗?在cshtml页面的header标签里加上这段。。
input{
font-weight:bold;
font-style:italic;
}
</style>
css会用吗?在cshtml页面的header标签里加上这段。。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询