0

i get the follow error :"Uncaught TypeError: Property '$' of object [object Object] is not a function " I check google and stackoverflow for answer but mainly is recommended to check if the query is included, so at my case it is.

<script type="text/javascript">
    $("#fakturayes").click(function () {
      $("#ffields").show("slow");
    });
    $("#faktura").click(function () {
      $("#ffields").hide("slow");
    });
</script>

Any ideas ? Thanks in advance.

4

2 回答 2

1

两个可能的问题:

  1. 您尚未在此页面上的脚本之前导入 JQuery
  2. 您已经导入了另一个覆盖您的 JQuerys 的 js 库$

在案例1中,只需导入它,在案例2中,您可以将$您想要的JQuery$替换为jQuery,并且可能使用noConflicts,请参阅:http ://api.jquery.com/jQuery.noConflict/

于 2013-06-11T20:30:05.600 回答
1

您的页面中必须缺少 JQuery 库

于 2013-06-11T20:33:27.477 回答