Last active
March 29, 2018 06:30
-
-
Save chhpt/d429659c4265e3445223c90893faca3c to your computer and use it in GitHub Desktop.
实现点击文字控制 radio 状态
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
<li> | |
<input name="item" id="item1" type="radio" value="张三"> | |
<label for="item1">张三</label> | |
</li> | |
<li> | |
<input name="item" id="item2" type="radio" value="李四"> | |
<label for="item2">李四</label> | |
</li> | |
<li> | |
<input name="item" id="item3" type="radio" value="小王"> | |
<label for="item3">小王</label> | |
</li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
实现效果