私は次のコードを持っています、
$("#nav").accordion({
event: "mouseover",
autoHeight: false,
collapsible: false,
animate: 'bounceslide',
<?php
// Checks for active page and opens the related tab
$uri = $_SERVER['REQUEST_URI'];
switch($uri):
case '/anti-social-behavior-logging':
echo('active: 0,'); break;
case '/telehealth-services':
echo('active: 1,'); break;
case '/telecare-services':
echo('active: 2,'); break;
case '/lone-worker-safety-services':
echo('active: 3,'); break;
case '/repairs-reporting-services':
echo('active: 4,'); break;
default:
echo('active: 5,');
endswitch;
?>
});
ただし、次のエラーが表示されます。
キャッチされていない TypeError: オブジェクト # にはメソッド 'bounceslide' がありません
どうしてこれなの?http://www.astraline.co.ukで問題を確認できます- 私の知る限り、これが機能するために必要なすべてのライブラリがあります。