7 lines
233 B
JavaScript
7 lines
233 B
JavaScript
alert('测试');
|
|
document.addEventListener("DOMContentLoaded", function () {
|
|
const button = document.getElementById("click_button");
|
|
button.addEventListener("click", function () {
|
|
alert("你还真按啊");
|
|
});
|
|
}); |