How can I pass a value from one HTML page to another using JavaScript?

后端 未结 4 1034
时光取名叫无心
时光取名叫无心 2020-12-10 01:53

This is my first HTML page:

   

    
    
4条回答
  •  爱一瞬间的悲伤
    2020-12-10 02:25

    Probably the best way in your case to use GET params like:

    http://mysite//second.html?myparams=value
    

    or if it's important or big data - use POST

提交回复
热议问题