jQuery в полученном ответе делает вот так:
jQuery("<div/>")
// inject the contents of the document in, removing the scripts
// to avoid any 'Permission Denied' errors in IE
.append(res.responseText.replace(/<script(.|\s)*?\/script>/g, ""))
Поэтому можно поступить таким образом:
$.getScript("test_ajax.js", function(){
$("#maincontent").load("http://localhost/test1/");
});