本文介绍了InnerHTML缓存的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




我有一个asp页面,例如:


< div id =" introText">< ; / div>


旁边是一个按钮。当用户点击按钮时我点火了一些javascript


函数doThisWhenButtonClicked(){


document.getElementById(''introText'') .innerHTML =" Hello Everybody";


}


所以点击按钮后,我会看到Hello Everybody。里面的div。


到目前为止没问题。


但是,如果我访问我网站上的其他页面,然后单击后退按钮返回页面 ;大家好已经走了 - 也就是说它没有缓存我假设?


任何人都可以帮忙 - 我正在使用Chrome。


谢谢提前

解决方案



Hi,

I have an asp page with for example:

<div id="introText"></div>

next to this is a button. when then user clicks on the button I fire some javascript

function doThisWhenButtonClicked() {

document.getElementById(''introText'').innerHTML = "Hello Everybody";

}

so once the button is clicked I see "Hello Everybody" inside the div.

No problem so far.

However if i visit another page on my site and then click the back button to return to the page "Hello Everybody" has gone - ie it''s not cached i assume ??

Can anyone help - i''m using Chrome.

Thanks on advance

解决方案




这篇关于InnerHTML缓存的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 16:41