当鼠标移到某一元素上时候显示提示信息,离开时提示信息也消失


   
        Style Example
       
   
   
       

Move your mouse over the red square.


       
             style="background-color: red; height: 50px; width: 50px"
             οnmοuseοver="showTip(event)" οnmοuseοut="hideTip(event)">

        

              style="background-color: yellow; position: absolute; visibility: hidden; padding: 5px">
            Custom Tooltip

            More details can go here.
        

   

---------------------------------说明-------------------------------

文中的两个粉色部分,第一个表示显示提示信息,第二个表示隐藏提示信息!

 

文中褐色部分表示需要用提示信息来说明的部分

 

文中蓝色部分表示要显示的部分

你可能感兴趣的:(JS)