Safari Ajax bug? checked radio not checked
问题 In Safari, If I load a piece of html via XHR (ajax) the browser does not render the radio button that has the checked="checked" attribute as checked. the html I fetch via ajax: <input type="radio" name="radiotest" value="off"> <input type="radio" name="radiotest" value="on" checked="checked"> the browser renders two unchecked radio buttons. If I load the exact same code directly from a plain html file (no ajax) the radio buttons render as they should, the last being in its checked state. what