$(document).ready(function(){
$("#btnLoad").click(function(){
$('#div1').load('test.txt', {}, fnLoad());
});
});
function fnLoad()
{
// How can I load the content of <div id="div1" /> into a variable here?
}
事实上,我想使用变量而不是 div1.innerHTML。