<asp:RadioButton ID="rdbABC" GroupName="samp" Text="ABC" CssClass="fl_left"
onclick="clickStreamForLCW('rdbABC-Linetype', 'radio', this);return LaunchApplyChangesLTC(this);"
Checked="true" runat="server" AutoPostBack="true" OnCheckedChanged="rdbLineType_CheckedChanged" />
<asp:RadioButton ID="rdbXYZ" CssClass="fl_left" GroupName="samp" Text="XYZ"
onclick="clickStreamForLCW('rdbXYZ-Linetype', 'radio', this);return LaunchApplyChangesLTC(this);"
Checked="true" runat="server" AutoPostBack="true" OnCheckedChanged="rdbLineType_CheckedChanged" />
function LaunchApplyChangesLTC(sender) {
if ($("#dVApplyChangesPopUpforLineType") != null) {
try {
if (document.getElementById("hdnSelectedLTCount") != null) {
var hdnLineCount = document.getElementById("hdnSelectedLTCount");
if (hdnLineCount != null) {
if (hdnLineCount.value > "4") {
$("#dVApplyChangesPopUpforLineType").jqm({ modal: true });
$("#dVApplyChangesPopUpforLineType").jqmShow();
$('html').css('overflow', 'hidden');
return false;
}
}
}
}
catch (e) { }
}
__doPostBack(sender.id, "");
}
我有2个单选按钮,默认选择ABC。当我选择XYZ时,应显示一个弹出窗口。
这在IE中工作正常,但在其他浏览器中却没有。在其他浏览器中,如果我选择XYZ,则会显示弹出窗口,但不会选择XYZ单选按钮。
答案 0 :(得分:0)
您在显示弹出窗口后正在执行return false
,其中包括阻止默认操作。删除它,选择应该通过。
如果你这样做是为了防止回发 - 只需为该按钮设置AutoPostBack="false"
,如果需要 - 通过__doPostBack
回发 - 看起来你现在已经在其他地方做了