2024-08-27 10:14:28 +08:00

6 lines
110 B
JavaScript

const h1 = document.querySelector("h1");
h1.onclick = function(){
window.alert("这是一个标题");
}