以下为引用的内容: <style type="text/css"> @import ""script/calendar/jquery.datepick.css"; </style> <script type="text/javascript" src="script/jquery1.3.2.js"></script> <script type="text/javascript" src=""script/calendar/jquery.datepick.js"></script> <script type="text/javascript" src=""script/calendar/jquery.datepick-zh-CN.js"></script> |
以下为引用的内容: <script type="text/javascript" src="script.do?plugins=calendar"></script> |
在一个页面中只需要js应用的插件只需要script.do后跟参数后插件名参数即可,其它的工作就是在整体写一个插件资源配置文件(写插件配置的人得弄清楚js相关资源,这个只需要配置一次),至于其它什么也不需要弄。
插件资源配置文件
以下为引用的内容: <?xml version="1.0" encoding="utf-8" ?> <script path="script/plugins/" name="script/jquery1.3.2.js" lazy="script/plugins/lazy/jquery.lazy-1.3.1.js"> <!--自动完成--> <plugin name="autocomplete" file="autocomplete/jquery.autocomplete.js"> <lazy file="autocomplete/jquery.autocomplete.css"></lazy> </plugin> <!--日历--> <plugin name="calendar" file="calendar/jquery.datepick.pack.js"> <lazy file="calendar/jquery.datepick.css"></lazy> <lazy file="calendar/jquery.datepick-zh-CN.js"></lazy> </plugin> <!--提示框--> <plugin name="tip" file="tip/jquery.tip.js"> <lazy file="tip/bs.css"></lazy> </plugin> <!--拖动--> <plugin name="draggable" file="jquery.draggable.js"> <lazy file="ui/ui.core.js"></lazy> <lazy file="draggable/ui.draggable.css"></lazy> </plugin> <!--拖动放下--> <plugin name="droppable" file="jquery.droppable.js"> <lazy file="ui/ui.core.js"></lazy> <lazy file="droppable/ui.droppable.css"></lazy> <lazy file="draggable/ui.draggable.js"></lazy> <lazy file="draggable/ui.draggable.css"></lazy> </plugin> </script> |
html示例代码:
提示:可修改后代码再运行!
相关代码下载