私のウェブサイトには、いくつかの動的なドロップダウンとクリック可能な div のために、いくつかの場所属性があります。テスト中に、iPad や iPhone では動作しないことがわかりました。これには理由がありますか?
彼らはこのように見えます
$('.storyClick').click(function () {
var context = $(this).closest('.storyClick'),
story_id = context.find('.story_id').val();
$(location).attr('href', '/chapters/' + story_id)
});
更新されたコード?もちろん...
$('.storyClick').click(function () {
var context = $(this).closest('.storyClick'),
story_id = context.find('.story_id').val();
location.href = '/chapters/' + story_id;
});