Is it possible to write to a file (on a disk) using JavaScript?

后端 未结 9 1138
走了就别回头了
走了就别回头了 2020-11-28 14:51

I am a novice-intermediate programmer taking a stab at AJAX. While reading up on JavaScript I found it curious that most of the examples I\'ve been drawing on use PHP for su

9条回答
  •  北海茫月
    2020-11-28 15:08

    You can write cookies with Javascript, on newer browsers you also have an SQLite database to store client side data. You cannot store data in an arbitrary location on the disk though.

提交回复
热议问题