我已经阅读了很多关于 $(document).ready(function() 的东西很清楚它什么时候有用,所以通常我在里面写 $(document).ready(function()
但是,为什么是魔鬼,为什么在这么简单的情况下就被KO了?如果您只是推迟 le $(doc.... 它可以完美运行
代码 :
<?php
?>
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script defer>
$(document).ready(function(){
//alert('ready boy');
function changeText(id) {
id.innerHTML = "Ooops!";
}
});
</script>
</head>
<body>
<h1 onclick="changeText(this)">Click on this text!</h1>
</body>
</html>