xxxxxxxxxx
1
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
2
<div id="acc">
3
4
</div>
5
<button type="button" class="btn btn-primary" id="testfun">Button</button>
1
1
xxxxxxxxxx
1
$(document).ready(function () {
2
$("#testfun").click(function (){
3
(async () => {
4
await make_acc();
5
await make_input();
6
await input_w();
7
})();
8
});
9
});
10
11
async function input_w() {
12
$('#form12').val('123');
13
document.querySelectorAll('.form-outline').forEach((formOutline) => {
14
new mdb.Input(formOutline).update();
15
});
16
}
17
18
async function make_input() {
19
$('#test001').html(`
20
<div class="form-outline">
21
<input type="text" id="form12" class="form-control" />
22
<label class="form-label" for="form12">Example label</label>
23
</div>
24
`);
25
document.querySelectorAll('.form-outline').forEach((formOutline) => {
26
new mdb.Input(formOutline).init();
27
});
28
}
29
30
async function make_acc() {
31
$('#acc').html(`
32
<div class="accordion" id="accordionExample">
33
<div class="accordion-item">
34
<h2 class="accordion-header" id="headingOne">
35
<button
36
class="accordion-button"
37
type="button"
38
data-mdb-toggle="collapse"
39
data-mdb-target="#collapseOne"
40
aria-expanded="true"
41
aria-controls="collapseOne"
42
>
43
Accordion Item #1
44
</button>
45
</h2>
46
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-mdb-parent="#accordionExample">
47
<div class="accordion-body">
48
<strong>This is the first item's accordion body.</strong> It is hidden by default,
49
until the collapse plugin adds the appropriate classes that we use to style each
50
element. These classes control the overall appearance, as well as the showing and
51
hiding via CSS transitions. You can modify any of this with custom CSS or
52
overriding our default variables. It's also worth noting that just about any HTML
53
can go within the <strong>.accordion-body</strong>, though the transition does
54
limit overflow.
55
</div>
56
</div>
57
</div>
58
<div class="accordion-item">
59
<h2 class="accordion-header" id="headingTwo">
60
<button
61
class="accordion-button collapsed"
62
type="button"
63
data-mdb-toggle="collapse"
64
data-mdb-target="#collapseTwo"
65
aria-expanded="false"
66
aria-controls="collapseTwo"
67
>
68
Accordion Item #2
69
</button>
70
</h2>
71
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-mdb-parent="#accordionExample">
72
<div class="accordion-body">
73
<div id="test001"></div>
74
</div>
75
</div>
76
</div>
77
</div>
78
`);
79
}
Console errors: 0