2018年7月9日 星期一

【網頁切版】表單的類型 input.email+tel+number


input的類型

  • 主要在手機版比較好輸入
 <input type="email" > <input type="tel" >
<input type="number">

沒有留言:

張貼留言

【JavaScript】用物件Mapping的方法

If的寫法 我們希望當變數是a時就回傳1,變數是b就回傳2,變數是c就會回傳3,一般寫法就是用if,但是這樣會很冗 ​ // IF style var word if(word == 'a'){ word = 1 } else if...