我嘗試通過JS函數更改圖像的大小。 我有桌子和圖片,我希望如果用戶點擊圖片,她的尺寸將變爲400,400,和所有其他圖片將設置爲默認100,100。 我爲在進入下一個功能表中的所有圖像OnClick事件:使用jquery和JS更改CSS
function ChangeSize(it) {
$('td img not(it)').css({"width":"100","height":"100"});
if (it.width == 100)
{
it.width = 400;
it.height=400;
}
else
{
it.width = 100;
it.height=100;
}
}
我知道我的jQuery的不能正常工作。但我該怎麼做?
謝謝!
什麼是'it'價值? – Satpal
這是表中每個圖像的事件:onclick =「ChangeSize(this)」 – user2970484
'$(「td img」)。click(function(){$(「td img」)。css({「width」 :「100」, 「height」:「100」}); $(this).css({「width」:「400」, 「height」:「400」});});' – TCHdvlp