$(…).tabs is not a function

后端 未结 8 1728
隐瞒了意图╮
隐瞒了意图╮ 2021-01-07 22:42

I have this code on two pages on my site, but at one page the function doesn\'t work. Firebug shows me \" $(...).tabs is not a function \". I don\'t understand why, can anyo

8条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-07 23:11

    You have relative paths to javascript files:

    javascript/jquery-ui-1.9.2.custom.min.js

    change them to absolute paths because you're using mod_rewrite module

    /javascript/jquery-ui-1.9.2.custom.min.js

    In first link the server is looking to the directory

    http://www.invat-online.net/javascript/my_js_file.js (which exists)

    but in the second one the path will be

    http://www.invat-online.net/variante-explicate-limba-romana/javascript/my_js_file.js which do not exists

提交回复
热议问题