2021-12-10 15:50:32 +08:00

5 lines
108 B
JavaScript

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