在我的頁面上我有2個iframe。onload不加載iframe jquery
我有一個函數來重新加載iframe的點擊。
現在我想加載主頁面而不加載2 iframe。 這可能嗎?我會怎麼做?
<ul>
<li><a href="#discotheque">Discothèque</a>
</li>
<li><a href="#articlesPresse">Articles de presse</a></li>
</ul>
<div id="discotheque">
<a href="javascript: void(0)" onclick="discothequeReload();" style="text-decoration: none" class="">Nouvelle recherche</a>
<script type="text/javascript">
function discothequeReload() {
var f = document.getElementById('discothequeReload');
f.src = f.src;
}
</script>
<!--TEST RELOAD-->
<iframe id="discothequeReload" frameborder="0" src="http://www.google.com">
</iframe>
</div>
<div id="articlesPresse">
Articles de presse
<a href="javascript: void(0)" onclick="articlesPresseReload();" style="text-decoration: none" class="">Nouvelle recherche</a>
<script type="text/javascript">
function articlesPresseReload() {
var f = document.getElementById('articlesPresseReload');
f.src = f.src;
}
</script>
<!--TEST RELOAD-->
<iframe id="articlesPresseReload" frameborder="0" src="http://www.yahoo.com">
</iframe>
</div>
不錯!正是我期待的! – user472285 2011-03-21 16:53:14