如何从内容中替换div内容并在选项卡内导航?

时间:2011-02-03 20:36:56

标签: ajax html

在标签内,我有几个单选按钮和一个div。单击按钮时,我将使用Ajax中的特定内容替换div。它工作正常。我真正想做的是在选项卡内导航,即从div中单击一个链接,该链接将更改主选项卡div的内容,并最终使用历史记录打包到选项卡内的上一页。

可行吗?任何线索在哪里看?

TIA,

JF

1 个答案:

答案 0 :(得分:0)

我正在使用jQuery Ui标签。从一个选项卡导航到另一个选项卡工作正常(以及使用它的历史记录。在选项卡内部,我有几个按钮,一旦单击,它就会更改选项卡内部的div内容。

<div id="tabs-10">
            <div id="acQual" class="accordion"> <!-- Catalogue -->
                <h3><a href="#">Verres</a></h3>
                <center>
                <div>
                    <form>
                    <div class="radiobouton">   <!-- barre de boutons -->
                        <input type="radio" id="radiov1" name="radio" onclick="shows('resVerresSimples','scripts/getcat.asp','q','1')" /><label for="radiov1">Verres Simples</label>
                        <input type="radio" id="radiov2" name="radio" onclick="shows('resVerresSimples','scripts/getcat.asp','q','2')" /><label for="radiov2">Verres Spéciaux</label>
                        <input type="radio" id="radiov3" name="radio" onclick="shows('resVerresSimples','scripts/getcat.asp','q','3')" /><label for="radiov3">Verres Feuilletés</label>
                    </div>
                    </form>
                <br>
                <div id="resVerresSimples"><img src="images/browser.png"></div>
                </center>   

我的问题是在我的getcat.asp中,我有想要在resVerresSimples div中打开的链接......