我正在嘗試使用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>
**究竟是什麼**不起作用? – David
腳本應該在'head'內部聲明,而不是'body',這可能會導致問題。但是,除非你解釋問題是什麼,否則我們不能真正解決問題。正如大衛所問,究竟有什麼不工作? –
任何衝突在您的控制檯請檢查 –