我使用jquery-ui创建了简单的对话窗口。它看起来像这样:
<div id="dialog-form" title="Add Attribute Category">
<input type="radio" id="priceable" name="price" value="true" checked="checked"/> Priceable
<input type="radio" id="priceless" name="price" value="false"/> Priceless
</div>
此代码仅适用于Firefox。
在Chrome或IE等其他浏览器中,未检查所有单选按钮。
也许有人可以帮助我并提供建议?
抱歉我的英语不好。
更新 在chrome中添加整个图片
firefox中的相同对话框
答案 0 :(得分:2)
尝试:
<div id="dialog-form" title="Add Attribute Category">
<input type="radio" id="priceable" name="price" value="true" checked/> Priceable
<input type="radio" id="priceless" name="price" value="false"/> Priceless
</div>
但令人惊讶的是,您的代码在我的系统上工作得很好..
答案 1 :(得分:0)
试试这个
<div id="dialog-form" title="Add Attribute Category">
<input type="radio" id="priceable" name="price" value="true" checked ="checked"> Priceable
<input type="radio" id="priceless" name="price" value="false"/> Priceless
</div>