简体   繁体   中英

How to load the content of a file into variable using jquery load method?

How do I load the content of a file into a variable instead of the DOM using jQuery .load() method?

For example,

$("#logList").load("logFile", function(response){ });

Instead of loading the file into the #logList element of the DOM, I would like it to load into a variable.

load() is just a shortcut for $.get that atuomagically inserts the content into a DOM element, so do:

$.get("logFile", function(response) {
     var logfile = response;
});

You can use $.get() to initiate a GET request. In the success callback, you can set the result to your variable:

var stuff;
$.get('logFile', function (response) {
    stuff = response;
});

Please note that this is an asynchronous operation . The callback function will run when the operation is completed, so commands after $.get(...) will be executed beforehand.

That's why the following will log undefined :

var stuff;
$.get('logFile', function (var) {
    stuff = var;
});
console.log(stuff); //undefined

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM