Skip to content

Instantly share code, notes, and snippets.

View zy108830's full-sized avatar

思过崖 zy108830

View GitHub Profile
@zy108830
zy108830 / show.blade.php
Last active July 14, 2017 08:58
setCustomValidity,html5,required,radio
<form>
<input type="radio" id="test" name="test" value="0" oninvalid="this.setCustomValidity('Click me')" onclick="clearValidity();" required>Zero<br>
<input type="radio" name="test" value="1" onclick="clearValidity()" class="wrapper">One <br>
<input type="radio" name="test" value="2" onclick="clearValidity()" class="wrapper">Two <br>
<input type="submit">
</form>
<script>
function clearValidity(){
document.getElementById('test').setCustomValidity('');