-
Notifications
You must be signed in to change notification settings - Fork 0
/
repository1.html
35 lines (30 loc) · 1016 Bytes
/
repository1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Bài tập 1: Hiển thị kết quả sử dụng hàm alert():
<button type="button" onclick="showMessage();">Click Me!</button>
<script>
function showMessage(){
alert('Xin chào!');
}
</script>
Bài tập 2: Hiển thị kết quả sử dụng thẻ HTML:
<div id="messageDiv"></div>
<button type="button" onclick="showMessage();">Click Me!</button>
<script>
function showMessage(){
document.getElementById('messageDiv').innerHTML = 'Xin chào!';
}
</script>
Bài tập 3: Hiển thị kết quả sử dụng hàm document.write():
<button type="button" onclick="showMessage();">Click Me!</button>
<script>
function showMessage(){
document.write('Xin chào!');
}
</script>
Bài tập 4: Hiển thị kết quả sử dụng hàm console.log():
<button type="button" onclick="showMessage();">Click Me!</button>
<script>
function showMessage(){
console.log('Xin chào!');
}
</script>
Lưu ý: Bật màn hình console của trình duyệt để có thể xem được kết quả.