下面是我们自己的JS文件中为单选按钮检查编写的代码,并将其上传到SiteCore-MediaLibrary,
但是在运行应用程序时,我们在Jquery182.js中遇到问题,其中选定的单选按钮未被选中。这将是非常有帮助的,有人可以建议我。
RemoteControlInit: function (event) {
var clone;
var pdfPath;
$("#report-loading").hide();
$("#brand-error").hide();
//radRemoteControl is the radiobutton.
firstchild = $("input[name='radRemoteControl']")[0];
if ($(firstchild).is(':checked') == false) {
$("div#disLst").html("");
if ($.browser.msie && $.browser.version < '8.0') {
$("div#disLst").html($(e.target).parents().find('div#rdooptions').html());
}
else {
$(firstchild).attr('checked', true);
$("div#disLst").html($(firstchild).parent().parent().next().html());
}
RemoteIdentifier = $(firstchild).parent().parent().find('.srcRemoteIdentifier').val();
RemoteName = $(firstchild).parent().parent().find('.srcRemoteName').val();
litSiteCoreID = $(firstchild).parent().parent().find('.srcSiteCoreID').val();
$titlenameResults = $(firstchild).parent().parent().find('.rptDivContainer').html();
y = $(firstchild).parent().parent().find('#dialog');
pdfPath = $(firstchild).parent().parent().find('.srcPdfPath').val();
var $resultslink = $(y).html();
resultsdialogClone = $resultslink.toString();
}
//below statement is also radio button.
fstchild = $("div#disLst input[type=radio]")[0];
if ($(fstchild).is(':checked') == false) {
$(fstchild).attr('checked', true);
Identifiercode = $(fstchild).parent().find('.srcIdentifiercode').val();
DeviceName = $(fstchild).parent().find('.srclitDeviceName').val();
}
}