ページに jQuery プラグインの prettyPhoto を実装しようとしています。このページの例を使用しました:
http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/#!prettyPhoto
を使用するrel="prettyPhoto[pp_gal]"
と、間違った構文に関するエラー メッセージが表示されます。
エラー: 構文エラー、認識できない式:
[rel*=[pp_gal]
何が問題になる可能性がありますか?
プロジェクトに prettyPhoto jQuery プラグインをインストールしました。このスクリプトをページに入れました:
$(document).ready(function () {
$("a[rel^='prettyPhoto']").prettyPhoto();
});
そして、私は画像を見るためにこの HTML を使用しました。
<a href="../GalleryImages/ScreenClip[1].png" rel="prettyPhoto[pp_gal]"><img src="../GalleryImages/ScreenClip[1].png" width="60px" height="60px" alt="Nice building" /></a>
<a href="../GalleryImages/1.jpg" rel="prettyPhoto[pp_gal]"><img src="../GalleryImages/1.jpg" width="60px" height="60px" alt="Nice building" /></a>