createElement('button'); button.textContent = 'Click ME!'; button.onclick = function () { alert(this); }; document.body.appendChild(button); } </script> ...
確定! 回上一頁