我試圖使圖像更大,當我點擊一個鏈接,但它不會工作。我在做什麼錯?我試圖使用jQuery點擊一個圖片越來越小
我在做什麼錯?
JQUERY:
$(document).ready(function(){
$('a, large').click(function(){
$("img").animate({width: "300px"});
});
$('a, small').click(function(){
$("img").animate({width: "75px"});
});
});
HTML:
<center>
<img src="TCRlogo.png"/></br>
<a href="#" id="large">Large</a> - <a href="#" id="small">Small</a>
</center>
'$( '#小')''前綴'#爲ID-選擇。請參閱https://jsfiddle.net/satpalsingh/rznzfc52/ – Satpal
末尾缺少括號。 – mm759