我有一个HTML文件,其中包含JavaScript <script>
部分。用户第一次打开文件时,我需要它来运行一个函数,但不能在文件的任何后续开头运行它。
答案 0 :(得分:1)
就像Jaromanda X所说,使用本地存储。
if(localStorage){
if(!localStorage.getItem("HasBeenOpened")){
// run function here
} else{
localStorage.setItem("HasBeenOpened", true);
}
}