デスクトップのサファリとクロムで動作している次のコードがありますが、iPhoneまたはサムスンギャラクシーS4では動作していません...モバイルで動作していないコードは、フォームのクリック機能です-選択ごとに#maxfriends が更新され、ユーザーが 45、49、50、または 50 人以上の友達を選択した場合、制限に近づいていることを警告するポップアップが表示されます。これはすべて私のimacのSafariとChromeで完全に機能しますが、モバイルで機能しない理由がわかりません。jquery mobile 1.3.1 と jquery 1.9.1 を使用しています。
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" /><link rel="stylesheet" href="csscustom.css" /><link rel="stylesheet" href="csstable.css" /><script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script><script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
</head>
<body>
<div data-role="page" id="selectfriends" >
<div data-role="header" data-theme="b" id="header" >
<a href="#mypanel" class="mypanel" data-icon="bars" data-iconpos="notext">Navigation</a>
<h1>Favourite Friends</h1>
</div><!-- /header -->
<div data-role="content">
<p> Please select up to a maximum of 50 friends. <span id="maxfriends"> </span> / 50 selected so far.</p>
<a id="popupLink" href="#popupInfo" data-rel="popup" data-role="button" class="ui-icon-alt" ></a>
<div data-role="popup" id="popupInfo" class="ui-content" data-theme="e" style="max-width:100px;">
<p></p>
</div>
<form id="choosefriendsform" action="quizwithfriendssavefavourites.php" method="POST">
<div data-role="collapsible-set" data-inset="false">
<div data-role="collapsible" data-theme="c"><h3>A</h3><ul data-role="listview" data-inset="false"><li data-role="fieldcontain"><label><input id="Aaron" type="checkbox" name="Form[uids][]" value="1234" checked="checked" /> Aaron </label> </li>
</ul>
</div>
</div>
<ul data-role="listview" data-inset="false">
<li> <input type="submit" data-inline="true" data-theme="b" data-icon="check" value="Save As Favourites" > </li>
</ul>
</form>
<script>
$( "#selectfriends" ).on( "pageinit", function() {
$('h3').click(function() {
var $position = $(this).offset();
scrollTo(0,$position.top);
});
$('#popupLink').hide();
var count = $("input:checked").length;
$('#maxfriends').html(count);
$('#choosefriendsform').click(function() {
var count = $("input:checked").length;
$('#maxfriends').html(count);
console.log(count);
if (count == 45) {
$('#popupInfo').html('<p>45/50 Selected</p>');
$('#popupLink').trigger('click');
}
if (count == 49) {
$('#popupInfo').html('<p>49/50 Selected</p>');
$('#popupLink').trigger('click');
}
if (count == 50) {
$('#popupInfo').html('<p>50/50 Selected. Please Save.</p>');
$('#popupLink').trigger('click');
}
if (count > 50) {
$('#popupInfo').html('<p> >50 Selected. Please deselect some.</p>');
$('#popupLink').trigger('click');
}
});
$('form').submit(function() {
var count = $("input:checked").length;
console.log(count);
if (count>50) {
return false;
}
});
});
</script>
</div><!-- /content -->
<div data-role="footer" data-theme="b" data-position="fixed" ><h4>Copyright © 2013. All rights reserved.</h4></div>
</div><!-- /page -->
</body>
</html>