jQuery插件无法在jQuery哈希加载的页面上工作


jQuery plugin not working on jquery hash loaded page

我的php页面加载了hash,页面上有jquery插件dataTable,
插件已加载但不工作,如果我重新加载页面,则它正在工作。。但不能使用加载了hash的jquery ajax
PHP页面包含以下加载的脚本:

<link rel="stylesheet" media="screen" href="lib/datatables/css/vpad.css" />
<script type="text/javascript" src="js/jquery.dataTables.js"></script> 
<script type="text/javascript"> 
    $(document).ready(function() {
        $('#example').dataTable( {
            "sPaginationType": "full_numbers"
        } );
    } );
</script> 

好吧,做一些这样的事情
将此代码放在ajax加载的页面中。。。。

<script type="text/javascript"> 
        $('#example').dataTable( {
            "sPaginationType": "full_numbers"
        } );
</script> 

这是因为数据表在实时加载的页面中不起作用。还有很多方法可以做到这一点,但这很简单100%工作