这是一个类似jQuery的前端JS库。
游览器端:
引入cdn
<!-- 游览器es5 -->
<script src="https://xqgj.cc/xqcdn/libs/xqgjs/xqgjs.min.js"></script>
<!-- es6模块 -->
<script type="module">
import xqgjs from './lib/xqgjs-esm.min.js';
</script>- 库版本信息
console.log(gjs.info);
// {name: 'gjs', date: '2022-09-29', version: 'v1.0.2'}- dom操作
console.log(gjs('h3'));
// init {0: h3}运行这个脚本查看展示案例:npm run test:browser。