我需要代码示例:
答案 0 :(得分:1)
以下是您尝试制作的功能的基本框架。
function AJAXCall(obj){
var type = obj.type || 'GET'; // 'GET' is the default here
// more variables...
$.ajax({
url: 'http://example.com',
type: type,
// more options...
});
}
然后你可以像这样调用你的函数:
var options = {
type: 'POST'
// more options...
};
AJAXCall(options);
以下是$.ajax
的文档,他们可能会提供帮助:http://api.jquery.com/jQuery.ajax/