我正在一個網站上工作,但由於某種原因,JQuery Mobile拒絕工作。 現在我已經使用從jQuery Mobile的例子逐字複製的代碼做了一個簡單的演示頁面,在這裏它是:JQuery Mobile TypeError:t.split不是函數
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.css" />
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.js"></script>
</head>
<body>
<div data-role="page" id="1">
<div data-role="header">
<h1>My Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Hello world</p>
<a href='#2' data-transition='slide'>2</a>
</div><!-- /content -->
</div><!-- /page -->
<div data-role="page" id="2">
<div data-role="header">
<h1>My Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Hello world2</p>
<a href='#1' data-transition='slide'>1</a>
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>
這出於某種原因不能正常工作,並返回我一個錯誤說「類型錯誤:T .split不是一個函數「。誰會知道發生了什麼問題?
您是否檢查過以確保CDN位置實際上正在返回數據? –
@ShaunHare他們鏈接到腳本,我從官方的JQuery Mobile例子中得到它,所以我可以想象它是最新的。 – Parrotmaster
@Omar我不會,因爲它不是同一個問題。一個是關於JQuery Mobile不適用於我的特定網站。這一個是關於它一般不工作。如果人們真的關心幫助解決問題而不是兩次,然後就離開,我們將有0個開放問題而不是2個問題。(我還特別聲明我會忽略網站的問題並繼續前進)。 – Parrotmaster