0
Divib Builderでblurbsと呼ばれる4つのボタンをクリックしようとしていますが、どちらかをクリックすると特定のセクション(div)が表示され、一度に表示されるのは1つだけです。最適化異なるソースから複数のdivを表示/非表示
<!--Photographer script-->
<script>
jQuery(document).ready(function(){
jQuery("#bphotographer").click(function(){
jQuery("#sclient").hide();
jQuery("#sshoot").hide();
jQuery("#sproduct").hide();
});
jQuery("#bphotographer").click(function(){
jQuery("#sphotographer").show();
});
});
</script>
<!--Client script-->
<script>
jQuery(document).ready(function(){
jQuery("#bclient").click(function(){
jQuery("#sphotographer").hide();
jQuery("#sshoot").hide();
jQuery("#sproduct").hide();
});
jQuery("#bclient").click(function(){
jQuery("#sclient").show();
});
});
</script>
<!--Shoot script-->
<script>
jQuery(document).ready(function(){
jQuery("#bshoot").click(function(){
jQuery("#sphotographer").hide();
jQuery("#sclient").hide();
jQuery("#sproduct").hide();
});
jQuery("#bshoot").click(function(){
jQuery("#sshoot").show();
});
});
</script>
<!--Product script-->
<script>
jQuery(document).ready(function(){
jQuery("#bproduct").click(function(){
jQuery("#sphotographer").hide();
jQuery("#sclient").hide();
jQuery("#sshoot").hide();
});
jQuery("#bproduct").click(function(){
jQuery("#sproduct").show();
});
});
</script>
それは非常に最適化されていないが、それは動作し、エラーがクロームの点検パネルに表示されていない:
この
は、私が現在持っているものです。皆さんに最適化の方法はありますか?
は、あなたがショーを行うと、唯一のdivを非表示にしたい場合は、あなたのdivのIDと同じ名前を使用して、メニューのクリックイベントに属性を追加し、ために1つの同じクラスを追加することができます
リチャード、
は、まあそれが働いて得るために私にしばらく時間がかかりました。私はあなたのコード(data-div部分)を実装するのを困難にしていたWebページビルダーを使用していますが、私は最終的にそれを取り上げました。あなたのコードは素晴らしかったです!ありがとう、私はonclick機能を実装する方法を学んだ:) –
あなたを歓迎します:-) –