在 ASP.net MVC 3 中的按钮上应用 CSS

发布于 2025-01-02 20:24:00 字数 221 浏览 0 评论 0原文

我开始尝试 MVC 3。并且我一直坚持应用输入按钮的样式。

可以在View中应用CSS吗?我给出的代码位于视图中。

<input id="newSubItem" type="button" onclick="location.href='javascript:void(0);'" value='New Subitem' /><br/>

I started experimenting with MVC 3. And I'm stuck with applying the style of an input-button.

Is it possible to apply Css in the View? The code I gave is located in the View.

<input id="newSubItem" type="button" onclick="location.href='javascript:void(0);'" value='New Subitem' /><br/>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅笑轻吟梦一曲 2025-01-09 20:24:00

你尝试过吗

 <input id="newSubItem" class="myCSSClass" type="button" onclick="location.href='javascript:void(0);'" value='New Subitem' />

Did you try

 <input id="newSubItem" class="myCSSClass" type="button" onclick="location.href='javascript:void(0);'" value='New Subitem' />
凉城 2025-01-09 20:24:00

您必须在视图中放置指向您的 css 页面的链接:

 <link href="@Url.Content("~/CSSPAGE.css")" rel="stylesheet" type="text/css" />

然后您可以应用您想要的任何类,例如

<input id="newSubItem" class="CSSClass1" type="buttononclick="location.href='javascript:void(0);'" value='New Subitem' />

You have to put link in the view to your css page :

 <link href="@Url.Content("~/CSSPAGE.css")" rel="stylesheet" type="text/css" />

And then you can apply any class you want,for example

<input id="newSubItem" class="CSSClass1" type="buttononclick="location.href='javascript:void(0);'" value='New Subitem' />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文