浏览文章
文章信息
$.get is not a function | $.post is not a function 报错解决
1936
原因:
boostrap之类的框架会先引用精简版本的jquery。或者重新定义了$
解决办法:
1)使用原生jQuery.
// 查询产品 function searchProduct(ele,e){ jQuery.get('{{ get_product_url }}&sku='+ele.value).then(function(data){ console.log(data); }) }2) 使用闭包去除环境干扰
(function($) { jQuery.get('{{ get_product_url }}&sku='+ele.value).then(function(data){ console.log(data); }) })(jQuery)