1

我试图在我的主页上有一个链接,该链接将链接到包含多个切换的服务页面。我想根据他们在主页上选择的链接打开一个特定的切换。

这是我主页上指向服务页面的链接(我知道在 /services 之后我需要一些东西来告诉函数打开切换):

<a href="http://www.debdweb.com/test/services">Go to Service 1 (open)</a>

这是我在服务切换页面上针对其中一个切换的内容:

<div class="service-box">
    <div class="separator8"></div>
    <ul class="service_list">
        <li>
            <h6><a href="#Service1" class="toggle-link tog1">Service 1</a></h6>
            <div class="sub-text" id="Service1">
                Curabitur faucibus magna at leo commodo sed cursus dui posuere.
                Praesent ornare, leo et aliquet tempus, orci orci luctus leo.
            </div>
        </li>
    </ul>
</div>

所以我认为我需要的是放入标题以打开链接上的“传入”切换的功能。我尝试了各种功能,但我不太擅长。任何帮助将不胜感激。谢谢!

4

1 回答 1

0

像这样格式化你的超链接:

<a href="http://www.debdweb.com/test/services?id=1">Go to Service 1 (open)</a>

并从 URL 中获取数字$_GET['id']

于 2012-09-08T13:22:50.770 回答