0

我需要用 PHP 加载动态创建的 javascript。在一些 ajax 请求完成后,是否有任何好的解决方案来加载由 PHP 创建的 javascript?

Thx 关于,我在 stackoverflow 中搜索 2h。

如果我调用 html/js 响应的 .ajax 函数,jquery 会杀死 js;/

4

1 回答 1

1
jQuery.ajax({
    type: 'POST',
    dataType: 'html',
    url: $url,
    success: function(result)
      { 
         result // html

         jQuery.ajax({
     type: 'GET',
     dataType: 'script',
         url: $url,
         success: function(result)
            { 
            //the result is js and is availble in browser if you return 
            //a function you can execute this now

            }
          });

      }
});

希望有人在这里找到他的答案:) gl & hf & nice day

于 2013-09-17T09:52:55.063 回答