简体   繁体   中英

activate and deactivate nav-link bootstrap in html jquery?

I have 2 links, one is for upload a report and the other to preview.. at first the second one is disabled because i put it in the class but then when i upload the report i want to enable this link with jquery in the event, Im trying to do something like this but i can´t

$("#linkPreview").prop( "disabled", false );

.html

     <li class="nav-title"> Report</li>
            <li class="nav-item">
              <a class="nav-link" href="/#upload">
                <i class="nav-icon icon-notebook"></i>
                Upload Report
              </a>
              <a class="nav-link disabled" id="linkPreview" href="/#preview">
                <i class="nav-icon icon-notebook"></i>
                Preview Report
              </a>
            </li>

Maybe is better to disable with jquery at document.ready function and enable in the event but also i don´t find the way to do..

Thanks in advance.

Finally using the function removeClass it works!

$("#linkPreview").removeClass("disabled"); 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM