[求助]
<img src="xx.gif" id="img_1" onclick="letBig(this)" style="width:100px;height:100px">
<script>
function letBig(obj)
{
obj.style.width =parseInt( obj.style.width) * 2 ;
obj.style.height =parseInt( obj.style.height) *2;
}
</script>
这个该怎么办啊?请高手指教。