<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!DOCTYPE html>
<html>
<head>
<title>YES</title>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"> </script>
</head>
<body>
<img id="dramatic" src="statefair.jpg" width="400px" height="400px">
<br>
<button id="make_visible">HIDE</button>
<style>
img#dramatic {
display: none;
}
</style>
<script>
$("button#make_visible").on("click", function() {
$("img#dramatic").slideDown();
});
</script>
</body>
</html>
我一本書的工作,並在書中我正在學習jQuery的了slideDown /向上方法。我最初在我的主網頁上運行代碼,它不會工作。所以我只是創建了一個簡單的YES.html(見上文),以確保我的編碼正確。但它不會向上或向下滑動圖像。我不知道我錯過了什麼工作。我是初學者,所以我可能會錯過簡單的東西。請儘可能在步驟中解釋您的答案/解決方案,或者可能引導我進入某種網頁教程。謝謝。
哇,謝謝。這爲如何基於這個小代碼片段使用jquery提供了很多想法。 – MVR
如果我的答案解決了您的問題,請接受它作爲答案。 –