任何人都可以告诉如何在java脚本或jquery中调用https url ajax请求
是否可以检查iframe url是否已加载或服务器中出现错误?
由于
答案 0 :(得分:1)
它可能对您有所帮助。
$.ajax({
type: "GET",
url: "yoururl", // like url/methodname
params : {Id : "1"} // pass data to method
succss:function(){
alert('Sucessfully');
}
error:function(error){
alert('Error');
}
});
答案 1 :(得分:0)
http://api.jquery.com/jquery.ajax/
和
http://www.w3schools.com/xml/dom_http.asp
可能就是你要找的东西,但你必须更具体一点。
答案 2 :(得分:0)
您可以使用此代码。
$.ajax({
type: "GET",
url: "https://someurl"
succss:function(){
alert('Everything is OK');
},
error:function(error){
console.log(error);
}
});