使用javascript调整按钮图像

时间:2010-09-22 15:39:41

标签: javascript html

当我点击它时,我希望以下按钮(和它的图像)改变大小。对话框正在显示,但尺寸没有变化..

<html>
    <input type="image" src="pacman.png"  onClick="
        alert('test');
        this.height='200px'; // change de button size
        // this.image.height='200px'; // not sure if this line will work..
    "/>
</html>

需要在javascript中,不在css中,因为我稍后会制作动画..

2 个答案:

答案 0 :(得分:5)

您必须操纵“样式”属性:

this.style.height = '200px';

答案 1 :(得分:2)

你可以用

完成
this.style.height = "200px";

但是,你应该看看jQuery,这是一个优秀的Javascript库,它可以很容易地做到这一点加上很多!值得小学习曲线,相信我。 http://www.jquery.com