remove attribute display:none; so the item will be visible

后端 未结 6 1854
闹比i
闹比i 2020-12-29 01:18

The element is:

span    {
    position:absolute;
    float:left;
    height:80px;
    width:150px;
    top:210px;
    left:320px;

    background-color:yello         


        
6条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-29 02:13

    $('#lol').get(0).style.display=''

    or..

    $('#lol').css('display', '')
    

提交回复
热议问题