以下代码中的所有功能都可以在桌面浏览器上正常运行,但是在iPad和iPhone上,前2个功能可以运行,但第3个功能(开始 $('input#pagebreakhomeNext')。click(function(){)不起作用完全没有
jQuery.noConflict();
jQuery(document).ready(function($){
$('div.rsform-block-pagebreak input').click(function () {
$(window).scrollTop($('div.calculator').offset().top);
return false;
});
$('a#pagebreaksubmitNext').click(function () {
$(window).scrollTop($('div.calculator').offset().top);
return false;
});
$('input#pagebreakhomeNext').click(function () {
if ($('input#postcode').val() != "") {
var code = $('input#postcode').val();
$.ajax({
url: “URL HIDDEN”,
dataType: "json",
data: 'code='+code,
async: false,
success: function(json) {
if((json.found) && $('input.benefits:checked').val() != "I do not get any of these benefits" && $('input.ownership:checked').val() == "Yes" && $('input.insulation:checked').val() == "Yes" && $('input.walls:checked').val() == "Solid Walls" && $('input.houseage:checked').val() == "Between 1930 and 1976") { $('div.rsform-block-success').hide(); $('div.rsform-block-failure').show(); }
else if((json.found) && $('input.benefits:checked').val() != "I do not get any of these benefits" && $('input.ownership:checked').val() == "Yes" && $('input.insulation:checked').val() == "Yes" && $('input.walls:checked').val() == "Solid Walls" && $('input.houseage:checked').val() == "After 1980") { $('div.rsform-block-success').hide(); $('div.rsform-block-failure').show(); }
else { $('div.rsform-block-success').show(); $('div.rsform-block-failure').hide(); }
}
});
}
});
});
请有人帮忙吗?
最佳答案
使用“touchstart”事件代替“click”。
关于javascript - jQuery显示和隐藏在iPad或iPhone上不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23231745/