我正在尝试使用jquery交换img src和文本描述。这是我到目前为止,但现在正在工作:)
$(document).ready(function(){
$("#slideShow a").click(function() {
var imgTitle = $(this).children('img').attr('title'); // Find the image title
$("#thecap").html(' ' + imgTitle + ' ');
$("#lgImage").attr('src', $(this).children('img').attr('rel'));
});
});
答案 0 :(得分:2)
您无法使用get .attr('src')
并尝试为其设置值。最后一行应该是:
$("#lgImage").attr('src', $(this).children('img').attr('rel'));
请参阅:http://api.jquery.com/attr/
.attr(attributeName,value)
attributeName
的名字 要设置的属性。
value
要为其设置的值 属性。