At that time, when jquery. jform. js was used, it was found that in IE, Radio changes do not work, and only the default value of the start is always displayed. Firefox opera does not have this problem.
See http://www.jb51.net/article/16779.htm for details
The reason for this document is clear, but the solution is a bit problematic, so another script is rewritten for processing.
<MCE: Script Type = "text/JavaScript"> <! -- <Br/> If ("/V" = "v") {<br/> $ (document ). ready (function () {<br/> $ ("input: Radio "). each (function () {<br/> $ (this ). click (function () {<br/> $ ("input: Radio [name = '" + this. name + "']"). each (function () {<br/> This. defaultchecked = false; <br/>}); <br/> This. defaultchecked = This. checked; <br/>}); <br/> $ ("input: checkbox "). each (function () {<br/> $ (this ). click (function () {<br/> This. defaultchecked = This. checked; <br/>}); <br/>}< br/> // --> </MCE: SCRIPT>