I generate many bootstrap modals with a php script, and I’d like to edit some input of it when I click button “save changes”. ModalIDs generated are something like “ModalID0000”. But nothing happens with my script when i click on “save changes”.
JavaScript
x
30
30
1
<input role="button" data-target="#modalID<?php echo $post->Clone;?>" />
2
3
<!-- Modal -->
4
<div class="modal fade" id="modalID<?php echo $post->Clone;?>" tabindex="-1" role="dialog" aria-labelledby="Identifiants" aria-hidden="true">
5
<div class="modal-dialog" role="document">
6
<div class="modal-content">
7
<div class="modal-header">
8
<h5 class="modal-title" id="exampleModalLabel">Identifiants de connexion</h5>
9
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
10
<span aria-hidden="true">×</span>
11
</button>
12
</div>
13
<div class="modal-body">
14
<!-- mdp et user récupérés dans le champ commentaire, sinon standard -->
15
<?php if ($flagLogin == true){ ?>
16
<input type="text" value="<?php echo $user; ?>"/>
17
<input type="password" value="<?php echo $pwd; ?>"/>
18
<?php } else { ?>
19
<input class="user_login" type="text" value="user"/>
20
<input class="user_password" type="password" value="xxxxxxxxx"/>
21
<?php } ?>
22
</div>
23
<div class="modal-footer">
24
<button type="button" class="btn btn-blue-grey z-depth-0" data-dismiss="modal">Close</button>
25
<button type="button" class="btn btn-warning z-depth-0 save" >Save changes</button>
26
</div>
27
</div>
28
</div>
29
</div>
30
JavaScript
1
5
1
$("modal.save").click(function(){
2
alert('save');
3
//edit user_login and user_password values here
4
});
5
EDIT : 1st mistake found with modal element selector instead of class, but still no alert
JavaScript
1
4
1
$(".modal.save").click(function(){
2
alert('save');
3
});
4
Advertisement
Answer
Save
button is the child element of .modal
selector.
So $("modal.save")
should be replaced to $(".modal .save")
.
Or that button belongs to .modal-footer
so you can put as follows.
JavaScript
1
2
1
$(".modal-footer .save")
2
JavaScript
1
4
1
$(".modal .save").click(function () {
2
alert('save');
3
//edit user_login and user_password values here
4
});
JavaScript
1
32
32
1
<input role="button" data-target="#modalID<?php echo $post->Clone;?>" />
2
3
<!-- Modal -->
4
<div class="modal fade" id="modalID<?php echo $post->Clone;?>" tabindex="-1" role="dialog"
5
aria-labelledby="Identifiants" aria-hidden="true">
6
<div class="modal-dialog" role="document">
7
<div class="modal-content">
8
<div class="modal-header">
9
<h5 class="modal-title" id="exampleModalLabel">Identifiants de connexion</h5>
10
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
11
<span aria-hidden="true">×</span>
12
</button>
13
</div>
14
<div class="modal-body">
15
<!-- mdp et user récupérés dans le champ commentaire, sinon standard -->
16
<?php if ($flagLogin == true){ ?>
17
<input type="text" value="<?php echo $user; ?>" />
18
<input type="password" value="<?php echo $pwd; ?>" />
19
<?php } else { ?>
20
<input class="user_login" type="text" value="user" />
21
<input class="user_password" type="password" value="xxxxxxxxx" />
22
<?php } ?>
23
</div>
24
<div class="modal-footer">
25
<button type="button" class="btn btn-blue-grey z-depth-0" data-dismiss="modal">Close</button>
26
<button type="button" class="btn btn-warning z-depth-0 save">Save changes</button>
27
</div>
28
</div>
29
</div>
30
</div>
31
32
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>