💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
## 创建文件 MyjQuery ``` $myjq = function(){ alert("hello,myjQuery") } (不推荐使用) $.fn.myjq = function(){ $(this).text("hello") } ``` ## 引入文件 ``` <script src="MyjQuery.js"></script> ``` ## 使用文件 ``` <div></div> <script> $(document).ready(function(){ $myjq() $("div").myjq() }) </script> ```