一个例子:
这是我要获取HTML的网站:
https://stackoverflow.com/questions/2294493/how-to-get-the-position-of-a-character-in-python
和AJAX调用
$.ajax({
url: href,
type: "get", //send it through get method
success: function(response) {
var htmlElem = $($.parseHTML(response));
console.log({response})
},
error: function(xhr) {
//Do Something to handle error
}
})
响应始终为空(""
),有人可以知道为什么吗?以及如何解决?
编辑:
使用jQuery AJAX加载跨域终结点
这不是解决问题的方法