Skip to content

Instantly share code, notes, and snippets.

@chhpt
Last active March 29, 2018 06:30
Show Gist options
  • Save chhpt/d429659c4265e3445223c90893faca3c to your computer and use it in GitHub Desktop.
Save chhpt/d429659c4265e3445223c90893faca3c to your computer and use it in GitHub Desktop.
实现点击文字控制 radio 状态
<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>
@chhpt
Copy link
Author

chhpt commented Mar 29, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment