[linux] Re: JavaScript bij verandering automatisch opnieuw laden

J. mailing-lists op xs4all.nl
Di Jul 5 13:37:03 CEST 2005


On Tue, 5 Jul 2005, Cecil Westerhof wrote:
> Ik heb een pagina waarbij JavaScript wordt gebruikt via een include. Dit
> wordt gecached. Hierdoor worden veranderingen niet gezien. Nu kan dit
> met <Ctrl> met Reload, maar ik wil eigenlijk niet dat de gebruiker een
> actie hoeft te doen. Ook zou de URL van de JavaScript kunnen worden
> aangepast, maar liever doe ik dit niet.
> Is er een manier om te zorgen dat als de JavaScript is veranderd, deze
> wordt herladen?

Bedoel je niet <SHIFT>+Reload ? 

Mijn eerste gedachte is dat dit het verschil is tussen client en
server side georienteerd scripten is. In die zin dat je bij de client
zijde nooit 100% zeker weet wat wel kan, en wat niet kan.

Maar mischien dat je iets kan met het; `location' ... Of `document'
gebeuren als in:

document.location.reload() 

of

Location.reload() 

Method Name Location.reload() 
Method --- reload the current document

Synopsis

location.reload()
location.reload(force)

Arguments

force

    A Boolean argument that specifies whether the document should be
reloaded, even if the server reports that it has not been modified since
it was last loaded. If this argument is omitted, or if it is false, then
the method will only reload the full page if it has changed since last
loaded.

Returns Nothing.

Description

The reload() method of the Location object reloads the document that is
currently displayed in the window of the Location object. When called with
no arguments, or with the argument false, it uses the If-Modified-Since
HTTP header to determine whether the document has changed on the web
server. If it has, it reloads the document from the server, and if not, it
reloads the document from the cache. This is is the same action that
occurs when the user clicks on Navigator's Reload button.

When reload() is called with the argument true, then it will always bypass
the cache and reload the document from the server, regardless of the
last-modified time of the document. This is the same action that occurs
when the user shift-clicks on Navigator's Reload button. 

.......................

<!--
function reloadthispage() {
document.location.reload()
}
//-->
</script>

<a href="javascript:reloadthispage()">Boffaahhaaaa...</a>

Anyways.. goodluck

J.




More information about the Linux mailing list