我如何打印某些东西,例如
console.log "inited"
jquery已在网页上下载并初始化自身时。
到目前为止我有
<html>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
</html>
答案 0 :(得分:2)
使用功能检查负载(.ready()的处理程序):
$(function() {
console.log( "Jquery Initilised.The DOM is now loaded and can be manipulated." );
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>