标签: javascript jquery html ajax
我的服务器呈现一个html文件并在我通过jquery post发送请求时发送该文件。
当我使用document.open(res)打开字符串时,它不会加载html文件中没有的javascript文件和css文件。 我如何像提交表单时那样打开它?
document.open(res)
$.post(url,data).done(function (res){ //res contains html });