我正在使用下面的 JavaScript 来根据用户对当前问题的回答来更改页面上显示的 div。
我知道下面的代码是多余的并且写得不好,但我需要使用这个特定的代码并让它在 iPad 上兼容。我在 iPad 上使用浏览器“iCabMobile”,出于某种原因,根本没有发生预期的操作。
$(document).ready(function(){
if($('#ctl00_ContentPlaceHolder1_RadioList_TextBox6_2_0').attr('checked')) {
$("#first").show();
$('#second').css('display', 'none');
}
if($('#ctl00_ContentPlaceHolder1_RadioList_TextBox6_2_1').attr('checked')) {
$("#second").show();
$('#first').css('display', 'none');
}
$("#ctl00_ContentPlaceHolder1_RadioList_TextBox6_2_0, #ctl00_ContentPlaceHolder1_RadioList_TextBox6_2_1").change(function () {
if ($("#ctl00_ContentPlaceHolder1_RadioList_TextBox6_2_0").attr("checked")) {
$('#first').css('display', 'block');
$('#second').css('display', 'none');
}
if ($("#ctl00_ContentPlaceHolder1_RadioList_TextBox6_2_1").attr("checked")) {
$('#second').css('display', 'block');
$('#first').css('display', 'none');
}
})
});