English 中文(简体)
jquery don t work after upload
原标题:jquery doesn t work after upload

我用XAMP设计了一个有关我的计算机的网站,但随着我将其上载到我的主人手中,所有Javascript和Jquery刚刚停止工作。

唯一 Error 我回头看看着这一点。

$("#link1").FontEffect is not a function 

所有必要的卷宗都进口。 我的描述也看着:

<script src="./script/jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="./script/menu.js" type="text/javascript"> </script>
<script src="./script/shadow.js" type="text/javascript" ></script>    
 <script type="text/javascript" src="./script/jquery-FontEffect-1.0.0.min.js"></script> 
 <script type="text/javascript">                                         
$(document).ready(function() {
   $("#wrapper").boxshadow(20,20,100, #30302F );
   $("#link1").FontEffect({outline:true, shadow:true ,shadowColor: #414345  ,outlineColor1: #A06BB5 , outlineWeight:2, shadowBlur:2})
   $("#link2").FontEffect({outline:true, shadow:true ,shadowColor: #414345  ,outlineColor1: #26A31A , outlineWeight:2, shadowBlur:2})
   $("#link3").FontEffect({outline:true, shadow:true ,shadowColor: #414345  ,outlineColor1: #E81515 , outlineWeight:2, shadowBlur:2})
   $("#link4").FontEffect({outline:true, shadow:true ,shadowColor: #414345  ,outlineColor1: #DB641A , outlineWeight:2, shadowBlur:2})
   $("#link5").FontEffect({outline:true, shadow:true ,shadowColor: #414345  ,outlineColor1: #4D5154 , outlineWeight:2, shadowBlur:2})
   $("#kwicks").kwicks({
  max:205,  
  min:25,  
  spacing:1
  });
   $(function () {
  $("#navi > li a").hover( function () { $(this).stop().animate({paddingLeft :  25px }, 500);
  }, function () {$(this).animate({paddingLeft :  10px }, 400);});
 });
 });
   </script>

你们的帮助!

最佳回答

http://code>jquery-FontEffect-1.0.0.min.js and not jquery-fonteffect-1.0.0.min.jsjquery-FONTEFFECT-1.0.0.min.js。 案件在“星号”服务器中处理。

问题回答

您在查阅小 files档案的过程中检查了案件敏感性吗?

你们是否正确地把 j和任何gin子联系起来?

your html source is equally as important.

而这一错误表明,它无法从我的经验中找到正确的档案。

FontEffect is a jQuery plugin. Test in order:

  • All the libraries are correctly linked
  • You load jQuery and then FontEffect

解冻库和其他Js档案的途径是不正确的吗?

我可否建议你从浏览器中“http://url/script/jqueryxys.js”?

利用FF的延伸火力,将现场和航道装到网络表上。 你们应该看到所有要求,应该有4项要求列入js案。 如果是红色检查。 如果是,服务器无法找到位于该地址的档案,这意味着这些途径是错误的。





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签