the effect you need to achieve is to click on a link and add class= "on"
to .bofangqi dd div. The code written byis as follows:
 $(".bofangqi dd").on("click",function(){
        $(this).find("div").addClass("on").siblings.find("div").removeClass("on");
    })
but can not achieve the effect, do not know what the problem is?
 
 
<dl class="bofangqi" name="same-video-1-data">
    <dd>
        <div class="on"><span class="line">
        <a href="/highlight/basket/exu2.html" target="_self"> </a> 
        </span></div>
    </dd>
    <dd>
        <div><span class="line">
        <a href="/highlight/basket/exu0.html" target="_self">  1</a> 
        </span></div>
    </dd>
    <dd>
        <div><span class="line">
        <a href="/highlight/basket/exux.html" target="_self">320</a> 
        </span></div>
    </dd>
    
</dl>
						