jquery CMS 插件
我正在尝试用 jquery 构建一个简单的发布工具。但我有点困惑,我会喜欢 以 jquery 插件方式构建它。但 jquery 适用于特定元素或对象。 那么,我怎样才能实现一个对其子对象来说是“全局”的发布工具。
我的想法是创建一个应用于窗口的插件,该窗口应该是最高的对象。 所以也许:
$(window).mypublishtool();
然后访问此插件中的功能以查找页面中的编辑子元素。
如果我能得到任何帮助,我将不胜感激。 谢谢
I'm trying to build an simple publishing tool in jquery. But i'm a bit confused, would love
to build it in an jquery plugin fashion. But jquery works on specific elements or objects.
So, how can I achieve an publishing tool that is "global" to its child objects.
My thought was creating a plugin applied to the window which should be the highest object.
So perhaps:
$(window).mypublishtool();
Then access functions within this plugin to find edit child elements within page.
I would appreciate any help I can get.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能单独使用 Jquery 来做到这一点。最好将其与服务器端语言结合使用; PHP、ASP.NET、Java、CGI-BIN 等...)。如果这没有帮助,请详细描述您的想法以及您到底想要实现的目标。
这里有一个链接,可以详细了解什么是 CMS 以及它们的构建实际有多复杂。
http://en.wikipedia.org/wiki/Content_management_system
You cannot do it soley using Jquery. Your best bet it to use it in conjunction with a server-side language; PHP, ASP.NET, Java, CGI-BIN, etc ...). If this does not help, please describe more on what your thoughts are and what you are exactly trying to achieve.
Here is a link to view more on what CMS's are and how complicated they actually are to build.
http://en.wikipedia.org/wiki/Content_management_system