单击链接时显示div类

时间:2009-06-26 05:08:08

标签: jquery css

如何在点击链接时显示div类?

这是必须显示的div类:

<div id="fb_contentarea_col1down1">
<div class="myform" id="step2">

<form action="index.html" method="post" name="FieldSetting" id="FieldSetting"> 
<label class="topspace">Field Label:
</label>

<input id="fieldName" name="fieldName"></input>
<label class="topspace">Field Size:
</label>

<select id="fieldSize" name="fieldSize" >
        <option >Choose a size </option>
        <option value="small">Small</option>
        <option value="medium">Medium</option>
        <option value="large">Large</option>
</select> 

<label class="topspace">Options:
</label>

<input id='required' name="required" type='checkbox'>Required</input>

<label class="topspace">Instruction for User:
</label>

<textarea cols="40" id="instructions" name="instructions" rows="20" style="width: 98%; height: 70px;"></textarea>
<br class="clear_both"/>
<input type="submit" class="button" value="Submit"/>

</form>
</div><!-- End of myform -->
</div><!-- End of fb_contentarea_col1down1 -->

当我点击下面给出的任何链接时,必须显示此div类:

<div id="fb_contentarea_col1down">

<ul class="formfield">
<li class="selected"><a href="#" id="text">Text</a></li>

<li><a href="#" id="textarea">Textarea</a></li>

<li><a href="#" id="checkbox">Checkbox</a></li>
</ul>
</div>

默认显示'myform' div。当我点击textarea或复选框的链接时,如何显示相同的'myform'div?

2 个答案:

答案 0 :(得分:2)

编辑:这应该这样做:

$('#fb_contentarea_col1down a').click(function() {
    $('#fb_contentarea_col1down1').show();

    //find the element in the div with class of selected and remove
    //all classes from it
    $('#fb_contentarea_col1down').find(".selected").removeClass();

    //add the class to the li parent of the clicked anchor
    $(this).parent().addClass("selected");
});

答案 1 :(得分:0)

好吧..我刚刚完成了karim的所作所为:

$('#fb_contentarea_col1down a').click(function() {
    $('#fb_contentarea_col1down1').show();


    // to remove all selected 
    $('.fb_contentarea_col1down li').attr('class',''); // this will reset all class 

    // assign the selected class for this link only 

    var id = $(this).attr('id');
    // set selected on the <li>
    $('#'+id+':parent').attr('class','selected'); 
});

您只需在每个<a> tags

上指定一个ID