Skip to content

Instantly share code, notes, and snippets.

View szdt-model's full-sized avatar

守猪逮兔估值模型 szdt-model

View GitHub Profile
@szdt-model
szdt-model / 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('');