Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have this snippet in my html code

<nav>        
    <ul class="test-list test-list-level-1">            
        <li class="test-page-1 test-heading-level-2">                
            <a class="test-link test-heading-1" href="#L1" title="t1">T1</a>            
        </li>            
        <li class="test-page-1 test-heading-level-2">                
            <a class="test-link test-heading-2" href="#L2" title="t2">T2</a>                
            <ul class="test-list-level-3">                    
                <li class="test-heading-level-3">                        
                    <a class="test-link test-heading-3" href="#L3" title="t3">T3</a>                    
                </li>                
            </ul>            
        </li>             
    </ul>    
</nav>

My goal is to set every href to "" to disable the link.

I tried

<script type='text/javascript'>
$("a.test-link").removeAttr('href');
</script>

But nothing happened.

I set it to the footer and header.

EDIT: I solved it by surrounding it with

jQuery(function($){
                $("a.test-link").removeAttr('href');
            });

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

Did you try like this:

$("a.test-link").removeAttribute("href")

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...