Javascript Jquery筛选器在internet explorer 9中不起作用

Javascript Jquery筛选器在internet explorer 9中不起作用,javascript,jquery,list,internet-explorer,filter,Javascript,Jquery,List,Internet Explorer,Filter,这段代码在chrome、firefox和InternetExplorer11中运行良好。但它必须在InternetExplorer9中工作。我看不到过滤器字段,页面布局也没有使用jquery <html> <head> <link rel="stylesheet" href="jquery.mobile-1.4.5.min.css" /> <script src="jquery-2.1.3.min.js"></sc

这段代码在chrome、firefox和InternetExplorer11中运行良好。但它必须在InternetExplorer9中工作。我看不到过滤器字段,页面布局也没有使用jquery

<html>
<head>  
    <link rel="stylesheet" href="jquery.mobile-1.4.5.min.css" />    
    <script src="jquery-2.1.3.min.js"></script>
    <script src="jquery.mobile-1.4.5.min.js"></script>
    <link rel="stylesheet" href="styles.css" />
    <title>phone numbers</title>
</head>
<body>
    $result = mysql_query('SELECT * FROM numbers ORDER BY first name') or die ("Fout: ".mysql_error());

if(!mysql_num_rows($result)) {
         echo 'no numbers found';
    } else {

    echo '<div id="list" class="marge"><ul data-role="listview" data-filter="true" data-filter-placeholder="Search" data-inset="true">';    
        echo '<table class="headers"><tr><td class="table">first name</td><td class="table">last name</td><td class="table">external number</td><td class="table">internal number</td><td class="table">phone number</td><td class="table">shortened phone number</td><td class="table">service number</td><td class="table">location</td></tr></table>';     
    while($row = mysql_fetch_assoc($result)) {
         echo '<li data-icon="false"><a href="#"><table><tr><td class="table">'.$row['first name'].'</td><td class="table">'.$row['last name'].'</td><td class="table">'.$row['external'].'</td><td class="table">'.$row['internal'].'</td><td class="table">'.$row['phone'].'</td><td class="table">'.$row['shortphone'].'</td><td class="table">'.$row['service'].'</td><td class="table">'.$row['location'].'</td></tr></table></a></li>';                
     }
     echo '</ul></div>'; 

    }

    echo '</body>
</html>';

?>

为什么这个问题用javascript标记?我看不到任何javascript代码。哦,对不起,源代码中有javascript,但这对我的问题不重要。