代码之家  ›  专栏  ›  技术社区  ›  Martin

从jquery成功调用javascript函数

  •  0
  • Martin  · 技术社区  · 14 年前

    我在Ajax函数的成功回调中遇到了一个问题。Ajax函数成功后,我想调用一个javascript函数,该函数是在包含在头中的外部文件中定义的。然而,从未调用javascript函数。这里有什么我做错的地方吗?

    我的jquery如下所示:

    $(document).ready(function() {
    
       $.ajax({
          type: 'get',
          url: 'lib/ajaxDB.php',
          data: 'ajax=1&action=locations&uid=<?php echo $uid; ?>&token=<?php echo $admin->getToken(); ?>',
          success: function(data) {
              addUserLocations(data); // call function in gmaps.js
          }
        });    
    ...
    ...
    
    1 回复  |  直到 14 年前
        1
  •  0
  •   Salman Riaz    14 年前