123456789101112131415161718192021222324252627282930313233 |
-
-
- function async_load(file) {
- // clog("RLD CHECK")
- // for (var file of this.arr){
- var aii
- aii= $.ajax({
- url: file.url,
- data: file.qs,
- cache:false,
- success: file.success,
- error: file.error,
- dataType: "text"
- })
- aii.rldh=file
-
- }
-
- fx = {
- url:"file:///C:/bspace/repos/jc4/ign4/rf/",
- success:scb,
- error:ecb,
- }
-
-
- function ecb(xhr,status,err) {
- clog("success",{that:this,xhr,status,err})
- // body...
- }
- function scb(data,status,xhr) {
- clog("success",{that:this,data,status,xhr})
- // body...
- }
|