您好我已经在主页网站上做了一个列表,我的想法是,当我选择一个选项时,它会将我发送到名为Pages.htm的页面,我想记住李的选择。
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发送正确的链接 THX!
答案 0 :(得分: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>