1. 程式人生 > 其它 >網頁上寫js程式碼

網頁上寫js程式碼

技術標籤:html基礎

var para = document.querySelector('p');

para.onclick = function() {
  alert('Owww, stop poking me!');
}

在這裡插入圖片描述