我正在尝试制作一个mobile site in MVC
,我是 jquerymobile 的新手,我从 JQM 教程中复制了以下代码并将其粘贴View
到 MVC 中
<div data-role="page" id="home">
<div data-role="header">
<h1>Home</h1>
</div>
<div data-role="content">
<p><a href="#about" data-role="button">About this app</a></p>
</div>
</div>
<div data-role="page" id="about">
<div data-role="header">
<h1>About This App</h1>
</div>
<div data-role="content">
<p>This app rocks! <a href="#home" data-role="button">Go home</a></p>
</div>
</div>
我的问题是,它显示了back button on header in the demo
我从哪里复制代码,但是当我在其中运行它时,the back button is not there
任何人都可以告诉我,为什么会这样?