鼠标移上去行怎么没有变色?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script src="http://cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script>
<style type="text/css">
table tr:hover
{
background-color:green;}
</style>
<script type="text/javascript">
$(function(){
$('tr:even').css("background-color","orange");
$('tr:odd').css("background-color","red");
})
</script>
</head>
<body style=" overflow-x:scroll; ">
<table style="font-size:18px">
<tr>
<td>k看电话费欧非佛尔</td>
<td>k看电话费欧非佛尔</td>
<td>k看电话费欧非佛尔</td><td>k看电话费欧非佛尔</td>
</tr>
<tr>
<td>k看电话费欧非佛尔</td>
<td>k看电话费欧非佛尔</td>
<td>k看电话费欧非佛尔</td><td>k看电话费欧非佛尔</td>
</tr>
</table>
</body>
</html>