2020年4月21日 星期二

google全文翻譯小工具

將以下html插入body標籤之間即可

<input type="text" id=url>
<button onclick=myFunction()>翻譯</button>

<script>
function myFunction() {
  window.open("https://translate.google.com.tw/translate?sl=en&tl=zh-TW&u="+document.getElementById("url").value);
}
</script>