Changing the style of html tag by clicking on another

后端 未结 2 1705
终归单人心
终归单人心 2021-01-26 04:20

I have the following code, the parentAppliance is part of main left nav table and on hovering over \"Appliance\" I see a subtable containing \"health\". Now I want the subtable

2条回答
  •  不思量自难忘°
    2021-01-26 04:43

    Use :active to set display back to none.

    .ui-navigation-static-menu-text:active{
        display:none;
    }
    

    http://jsfiddle.net/vXU2t/

提交回复
热议问题