Reading CSS value using JavaScript

前端 未结 7 688
梦毁少年i
梦毁少年i 2021-01-28 17:43

This works:

7条回答
  •  清歌不尽
    2021-01-28 18:13

    jQuery will do it for you

    $('#hello').mouseover(function({
      alert($(this).width()); 
    });
    

    Just try it!

提交回复
热议问题