html页面中的标记无法显示main.js中的数据

时间:2019-02-26 11:38:45

标签: javascript php html tags

我写了一个php页面,它具有发送数据以检查页面句柄的形式,并通过main.js中的函数返回显示在div中的结果 php页面中的代码

  function send_form( form_id )
  {
    $.post( $("#"+form_id).attr("action") , $('#'+form_id).serialize() , function(data){
        if($('#'+form_id+'_notice'))
        $('#'+form_id+'_notice').html(data);
    });
}

main.js中的代码

|app.js
  |uploads
    |images

我该如何解决这个问题?

0 个答案:

没有答案