function bigger() {
var p = document.getElementById('image');
p.width++;
p.height++;
}我在onClick事件中調用這個js函數為什麼id為image的圖片沒有改變大小
注意你的image對象必須存在style屬性設置過width/height,要不下面的代碼無效,dom.style.width獲取不到樣式表設置的值
function bigger() {
var p = document.getElementById('image');
p.style.width=(parseInt(p.style.width)||0)+'px;
p.style.height=(parseInt(p.style.height)||0)+'px;