「jQuery入門」$(selector).load(URL,data,callback)の使い方

2017年10月28日

JSコード
$(“button").click(function(){
$(“#testdiv").load(“demo.txt", function(responseTxt, statusTxt, xhr){
if(statusTxt == “success")
alert(“External content loaded successfully!");
if(statusTxt == “error")
alert(“Error: " + xhr.status + “: " + xhr.statusText);
});
});

JavaScript

Posted by arkgame