参考网址:https://laod.cn/code-audit/jquery-is-not-a-function.html
问题描述:
1.view页面引用的是jquery-1.10.2.min.js
2.报错 $(...).wordExport is not a function
3.页面初始化加载方法如下:
$(function () {
//jquery code
})
解决方法:
1.将上述的3修改为:
jQuery(document).ready(function($){
//jquery code
});