<i id='mfcQP'><tr id='mfcQP'><dt id='mfcQP'><q id='mfcQP'><span id='mfcQP'><b id='mfcQP'><form id='mfcQP'><ins id='mfcQP'></ins><ul id='mfcQP'></ul><sub id='mfcQP'></sub></form><legend id='mfcQP'></legend><bdo id='mfcQP'><pre id='mfcQP'><center id='mfcQP'></center></pre></bdo></b><th id='mfcQP'></th></span></q></dt></tr></i><div id='mfcQP'><tfoot id='mfcQP'></tfoot><dl id='mfcQP'><fieldset id='mfcQP'></fieldset></dl></div>

<small id='mfcQP'></small><noframes id='mfcQP'>

  • <tfoot id='mfcQP'></tfoot>

    <legend id='mfcQP'><style id='mfcQP'><dir id='mfcQP'><q id='mfcQP'></q></dir></style></legend>
    • <bdo id='mfcQP'></bdo><ul id='mfcQP'></ul>

        小部件 - 做什么和不做什么

        时间:2023-09-07

          <tfoot id='8a82k'></tfoot>

              <bdo id='8a82k'></bdo><ul id='8a82k'></ul>

                  <tbody id='8a82k'></tbody>

                <legend id='8a82k'><style id='8a82k'><dir id='8a82k'><q id='8a82k'></q></dir></style></legend>

                <small id='8a82k'></small><noframes id='8a82k'>

                <i id='8a82k'><tr id='8a82k'><dt id='8a82k'><q id='8a82k'><span id='8a82k'><b id='8a82k'><form id='8a82k'><ins id='8a82k'></ins><ul id='8a82k'></ul><sub id='8a82k'></sub></form><legend id='8a82k'></legend><bdo id='8a82k'><pre id='8a82k'><center id='8a82k'></center></pre></bdo></b><th id='8a82k'></th></span></q></dt></tr></i><div id='8a82k'><tfoot id='8a82k'></tfoot><dl id='8a82k'><fieldset id='8a82k'></fieldset></dl></div>
                  本文介绍了小部件 - 做什么和不做什么的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想制作一个 html/js 小部件,人们可以将其添加到他们的博客、网站等中.

                  I would like to make a html/js widget that people can add to their blogs, sites etc.

                  我以前从未制作过小部件,所以我想知道应该做什么,不应该做什么.例如,如何制作样式?内联,自己的css文件或最佳做法是什么?我相信我不能在里面使用头部和身体的东西.那么h1,h2等呢?他们会搞砸有小部件的网站还是我可以使用它们?

                  I have never made widgets before so I would like to hear what should be done and what not. For example, how do I make the styling? Inline, own css file or what is the best practise? I believe i cant use head and body stuff in it. What about h1, h2 etc? Do they screw the website that has the widget or can i use them?

                  如果你有什么好的建议,我想听听.

                  If you have any good tips I would like to hear those.

                  谢谢.

                  推荐答案

                  我会尝试:

                  1. 使其可配置

                  • 加载外部样式表?
                  • 在哪里可以找到我需要的资源?(图片、样式表)
                  • 我应该有什么布局/尺寸?

                  通过这样做,您可以让用户决定他是否希望您的小部件自动加载样式表,或者他是否想自己托管它.如果这样做,他还可以更新样式以更好地适应小部件所在的页面.

                  By doing this you let the user decide if he wants your widget to automatically load the stylesheet, or if he wants to host it himself. If he does, he can also update the styles to better fit the page the widget resides on.

                  • 确保即使是技术水平中等的用户也可以使用您的小部件
                  • 提供所有压缩和压缩的内容
                  • 使用缓存标头、电子标签、最后修改的标头以及您能想到的所有其他有用的标头.这既可以减少服务器上的负载,也可以让您的小部件更具响应性.
                  • 尽量避免对库的依赖,或者在加载它们之前检查它们是否加载到使用小部件的页面上
                  • Prototype 使用 $,jQuery 也是如此.如果您的小部件依赖于 Prototype,并且托管它的页面使用没有 noConflict-mode 的 jQuery, 就会出现问题
                  • 不要破坏全局命名空间!
                    • 如果您不希望任何人与您的小部件交互,请将其放在闭包中的自执行函数中,并且根本不要创建任何全局变量
                    • 如果您希望用户能够与您的小部件进行交互,例如添加事件侦听器等,请声明一个全局变量,假设 ExampleComWidget 作为对象文字并将您的方法放在那里.然后用户可以像这样进行交互:ExampleComWidget.addListener('update', callback);
                    • Prototype uses $, and so does jQuery. If your widget depends on Prototype, and the page it is hosted on uses jQuery without noConflict-mode, problems WILL arise
                    • Do not clobber the global namespace!
                      • If you don't want anyone to interact with your widget, put it in a self-executing function in a closure and don't create any global variables at all
                      • If you want users to be able to interact with your widget, say for adding event listeners and such, claim a single global variable, let's say ExampleComWidget as an object literal and put your methods there. User's could then interact like: ExampleComWidget.addListener('update', callback);

                      使用巧妙的标记

                      • 确保对你的类和 id 使用范围,尽可能避免冲突

                      • Be sure to use scoping on your classes and ids, to avoid conflicts as much as possible

                      即如果您的公司名称是 example.com,您可以使用如下类:com-ex-widget-newsItem

                      I.e. if your company's name is example.com, you could use classes like: com-ex-widget-newsItem

                      这篇关于小部件 - 做什么和不做什么的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:iframe 中的后退按钮(类似 iGoogle 的门户的小部件) 下一篇:如何制作像 Disqus 或 IntenseDebate 这样的 javascript

                  相关文章

                  <legend id='4DvqH'><style id='4DvqH'><dir id='4DvqH'><q id='4DvqH'></q></dir></style></legend>
                    <bdo id='4DvqH'></bdo><ul id='4DvqH'></ul>

                    <tfoot id='4DvqH'></tfoot>
                    <i id='4DvqH'><tr id='4DvqH'><dt id='4DvqH'><q id='4DvqH'><span id='4DvqH'><b id='4DvqH'><form id='4DvqH'><ins id='4DvqH'></ins><ul id='4DvqH'></ul><sub id='4DvqH'></sub></form><legend id='4DvqH'></legend><bdo id='4DvqH'><pre id='4DvqH'><center id='4DvqH'></center></pre></bdo></b><th id='4DvqH'></th></span></q></dt></tr></i><div id='4DvqH'><tfoot id='4DvqH'></tfoot><dl id='4DvqH'><fieldset id='4DvqH'></fieldset></dl></div>
                    1. <small id='4DvqH'></small><noframes id='4DvqH'>