ユーザーがモーダル外のどこかをクリックすると閉じるWebページに2つのポップアップモーダルがあります。問題は第1の作品ではない第2の作品だけです。Javaスクリプトのデュアルモーダルを閉じることができません
// When the user clicks anywhere outside of the modal1, close it
window.onclick = function(event){
if (event.target == modal1) {
modal1.style.display = "none";
}}
//When the user clicks anywhere outside of the modal2, close it
window.onclick = function(event) {
if (event.target == modal2) {
modal2.style.display = "none";
}}
私はコードをオーバーライドしています。しかし、私は2つの変数modal1とmodal2を持っている、私は両方のモーダルを閉じなければならないのですか?コードスニペットを提供できますか? –