<input type="radio" name="option" value="1">1<br> <input type="radio" name="option" value="2">2<br> <br> <button type="button" onclick="return clearRadioButton();">Clear</button> <script> function clearRadioButton() { let inputRadioButtons = document.querySelectorAll('input[name="option"]'); inputRadioButtons.forEach(function(item, index) { item.checked = false; }); return false; } </script>
<html> <head> </head> <body> <form id="frm"> <fieldset id="foobar"> <label>foo? <input name="foobar1" rel='chk' type="radio" value="foo" checked /> </label> <label>bar? <input name="foobar1" rel='chk' type="radio" value="bar"/> </label> </fieldset> <fieldset id="foobar"> <label>foo? <input name="foobar2" rel='chk' type="radio" value="foo" /> </label> <label>bar? <input name="foobar2" rel='chk' type="radio" value="bar" checked /> </label> </fieldset> <button id="btnRe">Reset</button> </form> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(function () { $('#frm').on('click','#btnRe',function(e){ e.preventDefault(); $('[rel=chk]').each(function(){ $(this).prop('checked',false); }); }) }); </script> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง