jqueryrotate 插件问题
http://code.google.com/p/jqueryrotate/wiki/Examples 我按照这个demo写旋转 在IE看不到效果啊
<!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=gb2312" />
<link rel="stylesheet" type="text/css" href="../css/common.css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jQueryRotate.2.2.js"></script>
<script type="text/javascript" >
$(document).ready(function(){
$("#img").rotate(45);
});
</script>
<title>无标题文档</title>
</head>
<body>
<img src="http://teeworlds.com/images/dl_arrow.png" id="#img" style="-moz-transform: rotate(0deg);">
</body>
</html>