我需要一些帮助。 某些计算机上发生此问题的情况并非全部。
ReferenceError'$ j'未定义 http://www.xxx.xxx/view.js:1:1Global代码
ReferenceError'$j' is undefined
http://www.xxxxxx.org/view.js:1:1Global code
$j(function(){
$("form.appnitro").data('active_element','');
var field_highlight_color = $("form.appnitro").data('highlightcolor');
//attach event handler to all form fields, to highlight the selected list (except for matrix field)
$("form.appnitro :input").bind('click focus',function(){
var current_li = $(this).closest("li").not('.matrix').not('.buttons');
答案 0 :(得分:3)
更改
$j(function(){
到
$(function(){