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() 函数将内容加载到 div 包装器中,但它在 android 上的 dolphin 移动浏览器中不起作用。所以我有:
$('#wrapper').load('content.php');
这会使网站崩溃。它适用于 iPhone 上的移动 Safari。这个代码有替代品吗?
$.get('content.php', function(data) { $('#wrapper').html(data); });