若是不是用這種設定時, 可以用以下方式達成.
function get(url, callback) {
$.get(url).success(function(data) { callback(data); });
}
get("...", function(result) {
// use `result` which you normally got by assigning the return value
// of `get` to a variable
});
1 則留言:
jQuery 在設計的時候就可以這樣用了,請參閱官方說明。。。 http://api.jquery.com/jQuery.get/
張貼留言