在jquery-ui对话框窗口中选中了单选按钮

时间:2014-01-21 08:34:04

标签: jquery html jquery-ui

我使用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。

enter image description here

在Chrome或IE等其他浏览器中,未检查所有单选按钮。

enter image description here

也许有人可以帮助我并提供建议?

抱歉我的英语不好。

更新 在chrome中添加整个图片

enter image description here

firefox中的相同对话框

enter image description here

2 个答案:

答案 0 :(得分:2)

enter image description here尝试:

<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>