Skip to content

Latest commit

 

History

History
75 lines (53 loc) · 1.17 KB

ajax.rst

File metadata and controls

75 lines (53 loc) · 1.17 KB

Ajax API

.. index:: loadScript

加载JavaScript文件。

  • 参数:
    • string url: JavaScript URL
    • function fn: 回调函数
  • 返回: undefined

示例:

K.loadScript('test.js', function() {
        console.log('ok');
});
.. index:: loadStyle

加载CSS文件。

  • 参数:
    • string url: CSS URL
  • 返回: undefined

示例:

K.loadStyle('test.css');
.. index:: ajax

GET或POST请求。

  • 参数:
    • string url: JavaScript URL
    • function fn: 回调函数
    • string method: "GET"或"POST",默认值为"GET"
    • object data: POST数据,key-value格式
  • 返回: undefined

示例:

//GET
K.ajax('test.php', function(data) {
        console.log(data);
});
//POST
K.ajax('test.php', function(data) {
        console.log(data);
}, 'POST', {
        aa : 1,
        bb : 2
});