私はforループを使ってこのコードを単純化する方法を探しています。どんな助けもありがとうございます。私のコードの単純な短縮
誰かがリンク先の日付(写真のアーカイブなど)をクリックしたときに、画像で完全なモーダルフレームを開くシステムをセットアップしています。私は多くの異なる日付を持ち、新しいものを作るたびに、以下に示すようにコードに100万回挿入する必要があります。たぶん私は日を保持し、配列をループし、下のコードを生成するいくつかの並べ替えの配列を作ることができます。これにはおそらく簡単な修正がありますが、私はWeb開発の初心者です。ありがとう!!!!
// Get the modal gallery
var gallery161207 = document.getElementById('gallery161207');
var gallery161130 = document.getElementById('gallery161130');
...
var gallery150916 = document.getElementById('gallery150916');
// Get the close button
var closeButton161207 = document.getElementById('closeModal161207');
var closeButton161130 = document.getElementById('closeModal161130');
...
var closeButton150916 = document.getElementById('closeModal150916');
// Get the buttons
var btn161207 = document.getElementById('161207');
var btn161130 = document.getElementById('161130');
...
var btn150916 = document.getElementById('150916');
// When the user clicks on the button, open the modal gallery
function openGallery(source) {
\t // Open the modal gallery depending on what was clicked
\t if (source == '161207')
\t \t gallery161207.style.display = "block";
\t if (source == '161130')
\t \t gallery161130.style.display = "block";
\t ...
\t if (source == '150916')
\t \t gallery150916.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
closeButton161207.onclick = function() {
gallery161207.style.display = "none";
}
closeButton161130.onclick = function() {
gallery161130.style.display = "none";
}
...
closeButton150916.onclick = function() {
gallery150916.style.display = "none";
}
btn161207.onclick = function() { openGallery('161207'); }
btn161130.onclick = function() { openGallery('161130'); }
...
btn150916.onclick = function() { openGallery('150916'); }
window.onclick = function(event) {
\t if (event.target == gallery161207) {
\t \t closeButton161207.onclick();
\t }
\t if (event.target == gallery161130) {
\t \t closeButton161130.onclick();
\t }
\t ...
\t if (event.target == gallery150916) {
\t \t closeButton150916.onclick();
\t }
}
は、我々は、彼らが
id="close-<id of gallery>"
のIDとそのclass="close-button"
を持っていると仮定すると閉じるボタンのために同じようなことを(行うことができますあなたの[tag:java]タグを[tag:javascript]タグに追加してください。これらは完全に異なる2つのプログラミング言語であり、ハムはハンバーガーと密接に関連しています。あなたはそれを見直すために適切な専門家を得ることはできません。そして、これはまともな助けを得るチャンスを傷つけるかもしれません。私はJavascriptについて絶対に何も知っていないので、これはあなたを幸せにしてくれることを望むことを除いて、私があなたのためにできるすべてについてです。 –@HovercraftFullOfEels私はそのコメントのために本当にあなたを愛しています。 –
ありがとう!言語についてのいくつかのことは構文のように非常に似ていますが。 – michaeled314