hello.js 131 字节
Newer Older
S
Sebastian Benz 已提交
1 2 3 4
const btn = document.querySelector('button')
btn.addEventListener('click', () => {
  document.body.textContent = 'Hello World!'
})