2014-05-02 49 views
0

我正在嘗試使用flowtype作爲響應文本,但它不工作?文件flowtype.js與我的索引文件位於同一文件夾中。這裏是我的身體和頭部標籤:Flowtype不起作用?

<head> 
    <link rel="stylesheet" type="text/css" href="index.css"> 
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
    <script src="jquery-1.11.0.js"></script> 
    <script src="flowtype.js"></script> 
    <link rel="shortcut icon" href="zpics/maikalogo.ico" > 
     <title>Website</title> 
    <style> 
     body { 
       background: url(background.jpg) no-repeat center center fixed; 
       -webkit-background-size: cover; 
       -moz-background-size: cover; 
       -o-background-size: cover; 
       background-size: cover; 
    </style> 
</head> 
<body> 
     <script> 
      $('body').flowtype(); 
     </script> 
<p>texttextmoretext</p> 
</body> 
+0

**究竟是什麼**不起作用? – David

+0

腳本應該在'head'內部聲明,而不是'body',這可能會導致問題。但是,除非你解釋問題是什麼,否則我們不能真正解決問題。正如大衛所問,究竟有什麼不工作? –

+1

任何衝突在您的控制檯請檢查 –

回答

0

中的位置,您的代碼無法獲得$(「身體」)。我建議你可以修改代碼如下:

$(function() { 
    $('body').flowtype(); 
}); 
+0

劇本是放在身體後,所以這是沒有意義的使用準備... –

+0

@ C-link在這種情況下,劇本放在身體,不是嗎? – jansesun

+0

和flowtype是身體和此後我所說的是沒有意義的幫助.... –

0

@ andryuu87:

此代碼的工作,假設flowtype.js和jQuery的1.11.0.js都在同一個文件夾作爲來自上面的HTML文件:

<!doctype html> 
<html> 
<head> 
    <link rel="stylesheet" type="text/css" href="index.css"> 
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
    <script src="jquery-1.11.0.js"></script> 
    <script src="flowtype.js"></script> 
    <link rel="shortcut icon" href="zpics/maikalogo.ico" > 
    <title>Website</title> 
    <script> 
     $(document).ready(function(){ 
      $('body').flowtype(); 
     }); 
    </script> 
    <style> 
     body { 
      background: url(background.jpg) no-repeat center center fixed; 
      -webkit-background-size: cover; 
      -moz-background-size: cover; 
      -o-background-size: cover; 
      background-size: cover; 
     } 
    </style> 
</head> 
<body> 
    <p>texttextmoretext</p> 
</body> 
</html>