我使用jquery.load功能将页面加载到我项目的几个页面上的div,并且我在控制台中不断发布弃用警告。请问我该如何解决这个问题?
主线程上的同步XMLHttpRequest因不推荐使用 它对最终用户的体验产生不利影响。如需更多帮助, 检查https://xhr.spec.whatwg.org/。
<script>
$(document).on('change', 'select#class_id', function () {
var class_id = $(this).val();
$('p#content').load('class.php?cid='+class_id);
});
</script>
需要帮助
$("p#content").on("load", function() {
//url
});
有没有办法在没有警告的情况下加载这些页面。