所以我有这个插件http://www.myjqueryplugins.com/jRating 我下载了它并在一个新的空白页面上尝试它,看看我是否可以做到这一点.有效.现在的问题是我把这个插件放在我的网站上并像在空白页面中那样做了精确的事情,但这次插件无效.是因为我在实际网站上使用原始的jquery函数还是什么?不能在线上传我的所有文件..但这里是重要的部分
这是进口
<!-- styles -->
<link rel="stylesheet" type="text/css" href="styles/general.css"/>
<link rel="stylesheet" type="text/css" href="styles/place-event.css"/>
<link rel="stylesheet" type="text/css" href="styles/homepage.css"/>
<link rel="stylesheet" type="text/css" href="styles/css-buttons.css"/>
<link rel="stylesheet" type="text/css" href="styles/colors.css"/>
<!-- plugin jRate -->
<link rel="stylesheet" type="text/css" href="plugin/jrate/jquery/jRating.jquery.css"/>
<script type="text/javascript" src="plugin/jrate/jquery/jRating.jquery.js"></script>
<!-- scripts -->
<script type="text/javascript" src="scripts/removeTextClick.js"></script>
<script type="text/javascript" src="scripts/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
Run Code Online (Sandbox Code Playgroud)
这是jquery代码
<script type="text/javascript">
$(document).ready(function(){
$("#abso").hide();
$("#close").hide();
$("#places-feed").load("eventPictures.html");
$("#comments").load("commentsOnEvent.html");
$("#insert-activity").load("newsFeed.html");
$("#list-friends-feed-link").load("friendsCount.html");
$("#notify").load("notificationCount.html");
$("#list-groups-feed-link").load("groupsCount.html");
$("#list-friends-feed-link").click(function(){ //start click
$("#abso").load("listFriendsFeed.html");
$("#abso").slideDown("600", function(){});
$("#close").slideDown("600", function(){});
}); //end click
$("#list-pictures-feed-link").click(function(){ //start click
$("#abso").load("picFeed.html");
$("#abso").slideDown("600", function(){});
$("#close").slideDown("600", …Run Code Online (Sandbox Code Playgroud)