?? ????? ?? ??
HTML4 ???? ??? ??, ??, ?? ??? ??? ???? ?? ???? ??????? ??? ?? ? ??? ???? ?? ????? ?? ??? ??? ? ????. ??? ??? ??? ??? ??? ID? ?? ???? ?? ??? ???? ??? ? ??? ?????.
??? ?? ???????.
???? ????? ?? 4096???? ??? ?????.
??????? ???? ??? ???? ??? ? ?? ?? ?? ?????. ???? ????? ???? 20?? ??? ?????. ? ?? ??? ????? ?? ?? ??? ??? ?????.
?? ?? ????? ?? ????? ???? ? ?? ?? ???? ??? ?? ????(?? 300?).
??? ????? HTTP ??? ?? ??? ??? ????? ?? ??? ????? ??? ?? ????. ?? ?? js, CSS, ?? ?? ?? ???? ??? ???? ????.
??? ??? ??? ?? ?? HTML5? JS? ??? API? ?? ??? ???? ????? ????? ?? ??? ? ???, ??? ?? ??????? ???? JS? ?? ????? ????. HTML5? ? ?? ??? WebStorage? ?????.
?? ?? ???(localStorage)
?? ?? ?? ???(sessionStorage)
localStorage ?? ?? ??:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)</title> </head> <body> <div id="result"></div> <script> if(window.localStorage){ alert("瀏覽支持localStorage") }else{ alert("瀏覽暫不支持localStorage") } //或者 if(typeof window.localStorage == 'undefined'){ alert("瀏覽暫不支持localStorage") } </script> </body> </html>