亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

代碼
提交代碼
<style> .btn { border: 1px solid #4caf50; font-size: 22px; padding: 8px 12px; color: #4caf50; outline: none; } .btn:active { background: #eee; } </style> <button class="btn"> 我是一個可以改變一切的按鈕 </button> <script> var btn = document.querySelector('.btn'); btn.onclick = function() { var text = btn.innerText; btn.innerText = text.replace('一切', '世界'); }; </script>
運行結果