1
我有一個UL李菜單等類使用jQuery加載圖片?
<ul>
<li><a href="#1">Image #1</a></li>
<li><a href="#2">Image #2</a></li>
<li><a href="#3">Image #3</a></li>
<li><a href="#4">Image #4</a></li>
</ul>
而且我有喜歡的圖像的容器:
<div id="image-container">
<img src="images/1.jpg">
</div>
我想改用在「圖像容器」的圖像採用div 「散」和「負荷」(每一個圖像是/圖像/文件夾,每一個被命名爲像哈希值,所以負載圖像/ 2.JPG等
我想是這樣的:
$("#ul li:nth-child(1)").click(function(e) {
e.preventDefault();
var hash = this.parentNode.hash;
$("#image-container").load('images/'+ hash.substring(1) +'.jpg');
$("#ul li:nth-child(2)").click(function(e) {
e.preventDefault();
var hash = this.parentNode.hash;
$("#image-container").load('images/'+ hash.substring(1) +'.jpg');
$("#ul li:nth-child(3)").click(function(e) {
e.preventDefault();
var hash = this.parentNode.hash;
$("#image-container").load('images/'+ hash.substring(1) +'.jpg');
(...)
但它不能很好地工作(我想我需要的東西與負載稍有不同,因爲它不會改變我的圖像?)。
非常感謝。
順便說一句 - 有沒有辦法寫我的jQuery代碼更短(在一個函數中,因爲現在我有多個相同的主體)?
非常感謝, 阿達:)
+1免費代碼審查... – tpow 2010-10-17 16:53:52