ImagelightboxとBootstrapを使用しています。トグルボタンが動作しない、私は私のモバイルビューで折りたたまれたナビゲーションバーがあり、次のJavaScriptは、ページ上に存在する場合:Bootstrap NavbarカスタムJavascriptが存在するときに折りたたみが動作しない
$(function() {
$('a[data-imagelightbox="ufo"]').imageLightbox({button: true, quitOnDocClick: true, navigation: false, arrows: true, overlay: true, caption: true});
$('a[data-imagelightbox="dreifeld"]').imageLightbox({button: true, quitOnDocClick: true, navigation: false, arrows: true, overlay: true, caption: true});
$('a[data-imagelightbox="delle"]').imageLightbox({button: true, quitOnDocClick: true, navigation: false, arrows: true, overlay: true, caption: true});
});
私のHTMLは次のようになります。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="css/custom.css" rel="stylesheet" type="text/css">
<link href="css/imagelightbox.css" rel="stylesheet" type="text/css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/imagelightbox.min.js"></script>
</head>
Iドン上記のJavaScriptが存在しないときに、動作しているようにNavbarに何か問題があると仮定します。
誰かが間違っていることを知っていますか?
jsfiddleで同じ問題を再現できますか? – ZimSystem
try test.spannmacher.com – mspann
トグルボタンがそこで動作しています。キャッシュをクリアしてみてください。 – user31782