这个简单的jQuery代码没有运行。 使用Chrome,启用了Javascript。
<html>
<body>
<h1>Click for info</h1>
<p>Here is the extra information!</p>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready({
$("p").hide();
$("h1").click(function(){
$(this).next().slideToggle(300);
});
});
</script>
</body>
感谢您提供的任何帮助:)
答案 0 :(得分:5)
$(document).ready({
应为$(document).ready(function() {
$(document).ready(function() {
$("p").hide();
$("h1").click(function(){
$(this).next().slideToggle(300);
});
});