<input type="button"> 有另於 <a href="#"> ,對於內連和外連也不像 <a href="#"> 方便,只要將路徑和標籤輸入屬性值就可以設定要另外新開視窗或是內連, <input type="button"> 要透過 <code>onclick="location.href='要前往的網頁連結'" 來控制
內連:(也可外連但只有原視窗)
<input type="button" value="連結名稱" onclick="location.href='要前往的網頁連結'">
外連:(開新視窗)
<input type="button" onclick="window.open('https://itunes.apple.com/tw/app/qing-yune-dian-tong/id901259634?mt=8');">