0

您好,我已经在主页网站中列出了一个列表,其想法是,当我选择一个选项时,它会将我发送到名称为 Pages.htm 的页面,我想记住 li 的选择。

Homepage
option 1--------> go to Pages.htm and add in the iframe the link1
option 2--------> go to Pages.htm and add in the iframe the link2
option 3--------> go to Pages.htm and add in the iframe the link3

这是 Pages.htm 页面上的代码:

<a href="http://www.altasoft.gr/hermes/index.html" target="myfra"><span class="description">Ερμής Proffesional<br /> <em>(Ολοκληρωμένο Πληροφοριακό Σύστημα Οργάνωσης Πολιτικού Γραφείου)</em></span></a></li>
        <li style="margin-left: 0px" class="level1 parent"><a href="http://www.koino.gr/" target="myfra"><span>Κοινόχρηστα</span></a></li>
        <li style="margin-left: 0px" class="level1 parent"><a href="http://www.shae.gr/" target="myfra"><span>Συνεχές Ηλεκτρονικό Αρχείο Εκπαίδευσης </span></a></li>
        <li style="margin-left: 0px" class="level1 parent"><a href="pages/PageTK.htm" target="myfra"><span>Ταχυδρομικοί Κώδικες Ελλάδας</span></a></li>
        <li style="margin-left: 0px" class="level1 parent"><a href="http://sms.altasoft.gr/panel/index.asp?lang=el&disp_function=user_login&id=5E8A0F4B-063B-4A7A-81FE-99579AF44BAA" target="myfra"><span>SMS Bulk Messenger Center </span></a></li>
        <li style="margin-left: 0px" class="level1 parent"><a href="http://www.altasoft.gr/Software/TAM.htm" target="myfra"><span>Ταμειακή και Εμπορικό
για Β' κατηγορίας βιβλία</span></a></li>
<li style="margin-left: 0px" class="level1 parent"><a href="http://www.altasoft.gr/Software/TAM.htm" target="myfra"><span>Οργάνωση παιδιατρικού ιατρείου</span></a></li>

我的问题是,在我的 HomePage.htm 我希望相同的链接指向 Pages.html 并在 iframe 上发送正确的链接谢谢!

4

1 回答 1

0

你可以用javascript做到这一点。

示例代码:

...css:
<style>
    ul li .selected{
        font-weight:bold;
    }
</style>
...html:
<ul>
    <li><a href="" onclick="active_li(this)">Page 1</a></li>
    <li><a href="" onclick="active_li(this)">Page 1</a></li>
</ul>

...js:
function active_li(element){
    element.setAttribute("class", "className");
}

基本上,当你点击一个a标签时,它会调用一个 javascript 函数来改变 li 元素的类。当发生这种情况时,它将应用 css 样式。

this指点击的元素。

更新:

也许你指的是:

<iframe src="demo_iframe.htm" name="iframe_a"></iframe> <a href="http://www.w3schools.com" target="iframe_a">domain.com</a>

来自:http ://www.w3schools.com/tags/att_iframe_name.asp

于 2013-05-21T12:51:39.303 回答