在不同的div

时间:2017-06-14 00:10:08

标签: javascript php jquery

我有我的页面example.php,其中包含Jquery。

<html>
   <head>
         [...]
   </head>
   <body>
         [...]
   </body>
   <script src="/plugins/jquery/jquery.min.js"></script>
   <script>
       window.onload = function() {

        $('form').submit(function(){
            $(':submit').attr('disabled', 'disabled');
        })
        // ######## OBTENER LOS REGISTROS ########

        function fetch_data(){
            $.ajax({  
                url: "/select/select_curso.php",  
                method:"POST",  
                success:function(data){  
                     $('#mostrar_informacion').html(data);  
                }  
            });  
            $.ajax({  
                url: "/select/select_alumnos_curso.php",  
                method:"POST",  
                success:function(data){  
                     $('#mostrar_informacion2').html(data);  
                }  
            }); 
        }  
        fetch_data();
        });

    };
 </script>

如您所见,我将一些数据(表格)带入两个不同的div中。在每个div中,我需要使用相同的Jquery。所以在那些文件(select_curso.php和select_alumno_curso)中我再次导入:

    //SELECT_CURSO.PHP

    <table class="table table-bordered table-striped table-hover js-basic-example dataTable" id="example">
             [...]
    </table>
    <script src="/plugins/jquery/jquery.min.js"></script>

这样做会给我带来一些问题。是否有一个表单将主要文件“example.php”的Jquery共享到“select_curso.php”,因为我需要jquery才能使用bootstrap工作表

0 个答案:

没有答案