"未捕获的TypeError:undefined不是函数"在JSF项目中

时间:2014-06-01 15:06:13

标签: javascript jquery html jsf jsf-2

我有一个html模板,不会抛出任何异常,对于我使用Google Chrome Developer Tools的检查,在从html移动到JSF 2项目之后,我收到了此消息我的.xhtml页面:

enter image description here

这是完整的参考代码:

if ($('.chart').length) {

  var size = 240;

  if($('html').width() < 778){ size = 175 }

    $('.chart').easyPieChart({
      animate: 2000,
      barColor: "#02b6eb",
      lineCap: "square",
      lineWidth: 8,
      scaleColor: false,
      size: size,
      trackColor: "#bfc8d1",
    });
}

哪个适用于html项目但不适用于JSF项目。 我真的不使用jQuery,所以任何帮助都会非常有用。

0 个答案:

没有答案