使用 HtmlHelper 创建 jQuery UI 对话框
Html 帮助器很好,而且 jQuery UI 对话框也很容易使用。
我想知道是否可以创建一个 HtmlHelper
,它可以简化对话框的使用。 我的意思是要创建和使用即使是简单的 jQueryUI 对话框,您也必须放置一些 html 和一小段 javascript。
相反,我尝试创建一个帮助程序类,它将为我提供与 System.Windows.Forms.MessageBox 中类似的功能。
这可能吗,或者有更好的方法吗?
Html helpers are good, and jQuery UI dialogs are easy to use.
I wonder if I can create an HtmlHelper
, that can simplify use of dialogs.
I mean to create and use even simple jQueryUI
dialog you have to put some html and little piece of javascript.
Instead I'm trying to create a helper class, that will provide me similar functionality like we have in System.Windows.Forms.MessageBox
.
Is that possible, or there is better ways to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以 - 我做到了:)有点乱,但我有一个。
实际上..下载我在演讲中所做的整个 mvc 项目的代码:
http://completedevelopment.blogspot.com/2011 /04/learning-mvc-for-web-forms-developer.html
查看dialogfunctions.js 代码和扩展文件夹中的扩展方法。
You can - I did it : ) Its a bit messy but I have one.
actually.. download the code for the entire mvc project I did as a talk at:
http://completedevelopment.blogspot.com/2011/04/learning-mvc-for-web-forms-developer.html
look in the dialogfunctions.js code and the extensions folder for the extension methods for this.