Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个复选框,例如
<input type="checkbox">1</input>
它会看起来像这样:
我是否可以让它出现在文本框的左侧,例如:
我需要做什么?
尝试这个:
<label>1 <input type="checkbox" /></label>
一种方法是
<label>1<input type="checkbox"/></label>
另一种方式是
http://jsbin.com/uyohar/1
据我所知,您不能按照您尝试的方式将数字放在左侧,但可以这样做:
<label>1</label><input type="checkbox"></input>