Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我制作了这个简单的函数,为默认不支持的浏览器添加占位符,比如 Explorer 8。
演示
问题是:如何制作具有该功能的插件?为了从html文件中删除代码并将其放在单独的js文件中?
谢谢!
只是让你知道:已经有一个插件。
JQuery UI 有一个不错的学习中心。
上述学习中心的基本示例:
(function ( $ ) { var shade = "#556b2f"; $.fn.placeholder = function() { // your code return this; }; }( jQuery ));