label的第一种用法:
把input直接写在label中
<label><input type='text'/></label>
label的第二种用法
把input写在label之外,通过id来定位
<label for="num">输入:</label>
<input type="password" id='num'>
label的第一种用法:
把input直接写在label中
<label><input type='text'/></label>
label的第二种用法
把input写在label之外,通过id来定位
<label for="num">输入:</label>
<input type="password" id='num'>