Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
javascript .load() funciton を使用してコンテンツを div ラッパーにロードしていますが、Android のイルカ モバイル ブラウザーでは機能しません。ので、私は持っています:
$('#wrapper').load('content.php');
これにより、Web サイトがクラッシュします。iPhoneのモバイルサファリで動作します。このコードに代わるものはありますか?
$.get('content.php', function(data) { $('#wrapper').html(data); });