2011-02-01 54 views

回答

1

您不需要爲此使用iframe。通常,您將更改頁面上某個元素的innerHTML屬性。這樣就沒有頁面重新加載,並且你可以維護你需要的任何狀態。

例如(從this tutorial):

<script type="text/javascript"> 
function changeText(){ 
    document.getElementById('boldStuff').innerHTML = 'Fred Flinstone'; 
} 
</script> 
<p>Welcome to the site <b id='boldStuff'>dude</b> </p> 
<input type='button' onclick='changeText()' value='Change Text'/> 
0

如果您使用的是最新的瀏覽器(IE 8 +,Chrome瀏覽器,火狐),你爲什麼不使用HTML 5 local storage

相關問題