我正在使用增加和減小縮放圖像,但我想顯示 當用戶單擊圖像時減少。當我嘗試這個代碼時;減少不起作用 ..爲什麼?jquery增加和減少zomming不起作用
<script type='text/javascript'>
$(window).load(function(){
var cell = $('#pok');
$('.increase').click(function(){
cell.height(cell.height()+20);
$(".title").html('<a href="#" class="decrease">Decrease</a>')
});
$('.decrease').click(function(){
cell.height(cell.height()-20);
});
});
</script>
<img src="/41.jpg"id="pok"class="increase"><span class="title"></span>
謝謝verymuch – user3172316