<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>02-jQuery-HelloWorld</title>
</head>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script>
$(document).ready(function(){
alert("Hello World");
});
</script>
<body>
</body>
</html>
本文介绍了一个简单的jQuery示例,展示了如何使用jQuery库在网页加载完成后弹出'Hello World'消息框,适合初学者快速入门。
537

被折叠的 条评论
为什么被折叠?



