嘿傢伙我這裏有這段代碼一切似乎工作正常,除了一個問題... 我有aj查詢移動彈出按鈕的代碼,它不工作作爲一個按鈕,它實際上甚至沒有運作在所有 這是我的scripiting? 還是這是干擾我的背景?jquery移動按鈕
我也試圖CDN jQuery的腳本和jQuery Mobile的劇本,但後來我谷歌瀏覽器永遠給我一個負重輪,並且不顯示任何的jQuery的東西
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="jquery.mobile-1.4.5.css">
<script src="jquery.js"></script>
<script src="jquery.mobile-1.4.5.js"></script>
<style>
body {
background-image: url(myhostedwebsiteurl.jpeg);
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-color: #464646;
}
</style>
<link rel="stylesheet" type="text/csc" href="additionbutton.css"/>
</head>
<body>
<div data-role="page" id="pageone">
<div data-role="header">
<br>
<br>
<br>
<br>
<br>
<h1 style="text-align:center"> <font face="comic sans ms" color= #F781F3><b> <marquee> blah blah</marquee></b></h1>
</div>
<div data-role="main" class="ui-content">
<a href="#myPopup" data-rel="popup" class="ui-btn ui-btn-inline ui-corner-all">About the Game</a>
<div data-role="popup" id="myPopup">
<p>text goes here but its not working </p>
</div>
使用自舉:[小提琴](http://jsfiddle.net/oLxxz9h4/3/) – Raviteja