我想重命名jquery的内置函数,就像ajax我要用MyAjax函数替换它我调用它也会调用它以前的名字。
$MyAjax();
$.ajax();
所以我想以这种方式打电话。它可能与否?
答案 0 :(得分:3)
这是你想做的吗。
var $MyAjax = $.ajax;
var root = 'https://jsonplaceholder.typicode.com';
$MyAjax({
url: root + '/posts/1',
method: 'GET'
}).then(function(data) {
console.log(data);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>