twitter 像 asp.net mvc 中的警报 jquery
我在 google 上搜索了 twitter 之类的警报,但所有文章都是 php 格式的...有没有 ASP.NET MVC 的文章吗?这是 http://briancray.com/ 2009/05/06/twitter-style-alert-jquery-cs-php/ php 中的示例..
I googled for twitter like alert but all the articles were in php... Is there an asp.net mvc one out there? Here is the http://briancray.com/2009/05/06/twitter-style-alert-jquery-cs-php/ sample in php..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
其中大部分是 CSS 和 jQuery所以没有 ASP.NET MVC 特定的。
模型:
控制器:
视图:
当然,这只是标记、样式和脚本混合在同一页面中的示例。在现实世界的应用程序中,CSS 和脚本应该被外部化。
Most of it is CSS and jQuery so no ASP.NET MVC specific.
Model:
Controller:
View:
Of course this is only a sample where markup, style and scripts are mixed in the same page. In a real world application, CSS and scripts should be externalized.
这是与服务器端无关的。这样的东西只是用 jQuery 和一些 CSS 制作的,以使其看起来不错。所需的 HTML 本身可以通过一些简单的 MVC 输出。这似乎是一个有趣的实现:http://jnotify.codeplex.com/。
格兹,克里斯。
This is server side agnostic. Such a thing's simply made with jQuery and some CSS to make it look good. The HTML itself needed can be outputted by some simple MVC. This seems to be an interesting implementation: http://jnotify.codeplex.com/.
Grz, Kris.