私は何かを見過ぎたことを知っていますが、その声明が示唆しているように、私はそれが何であるかを理解することができません。最新のjqueryおよびcolorboxライブラリをダウンロードしました。これをローカルPCの動作中のWebページに追加しました。ここで、JavaScriptポップアップを追加して、正常に実行します。マップされた領域の画像の情報ポップアップにカラーボックスを使用しています。ローカルではすべてが正常に機能しますが、すべてのパーツをインターネットサーバーにアップロードすると、すべてのクリックが無視されます。これで、スタイルシートとJsライブラリのアクセス許可と相対的な場所を確認し、すべてが残りの作業部分と一致します。問題のウェブページは
こちらです。 「検索バー」と「新規追加」のいくつかの領域がプログラムされています。これらは機能するはずですが、機能しません。
質問する
681 次
1 に答える
1
最初に、表示されている内容を確認するためにいくつかのエラーを見つけました(エラーはすぐに投稿します)。GoogleChromeでページを開いてみて、Ctrl + Shift+Jを押してデバッグコンソールを開きます。
最初のエラー
// Line 27 of detailedview.html
// Uncaught Syntax Error: Unexpected token ILLEGAL
settings = "width=900, height=320, top=20, left=20, scrollbars=yes, location=no,
directories=no, status=no, menubar=no, toolbar=no, resizable=no, dependent=no";
// 2 possible issues here;
// 1.) Your "string" is on 2 lines, try closing first line and puttin '+ "' on second line
// 2.) variable not declared, try full rewrite as follows:
var settings = "width=900, height=320, top=20, left=20, scrollbars=yes, location=no, "
+ "directories=no, status=no, menubar=no, toolbar=no, resizable=no, dependent=no";
2番目と3番目のエラー
// GET http://www.sowardssystemsconsulting.com/accounttracker/js/jquery-1.8.0.min.js 403 (Forbidden)
// GET http://www.sowardssystemsconsulting.com/accounttracker/js/jquery.colorbox.js 403 (Forbidden)
// This is a permissions error on your server
// Try ensuring the folder where your js is has correct access permissions
// In filezilla, this may require right clicking the folder and setting the file permissions
// Or your hosting site may have account manager tools with some kind of "Reset File Permissions" button.
最後のエラー
// Uncaught ReferenceError: $ is not defined
// If your fix the 2nd error, then this one will be corrected by default
于 2012-08-27T17:56:34.730 に答える