1

我目前正在PhoneGap上制作一个Android应用程序并且在链接图像时遇到问题,因此一旦单击它会将用户带到同一页面上的不同div,我不想制作另一个HTML文件只是一点点javascript。当我在 android 模拟器中对其进行测试时,该链接似乎不起作用,就好像我将他的链接更改为 index.html 一样。任何帮助都会很棒。

<div data-role="page" id="workpage">
<div data-role="header">
    <h1>Work</h1>
</div>
<div data-role="content">
<div data-role="navbar">
    <a href="index.html">Back</a>
</div>  
    <a href="#work1"><img src="work/example1.png" id="content"></a>
    <div data-role="navbar">
    <a href="index.html">Back</a>
</div>
<div data-role="footer">
    <h4>© 2013 Nick Willcox</h4>
</div>
</div>
<div data-role="page" id="work1">
<div data-role="header">
    <h1>Work</h1>
</div>
<div data-role="content">   
    <div data-role="navbar">
    This was the first website I created, its purpose was to be a small business card which shown a little information about myself. I used HTML4, Photoshop and CSS.
    <a href="work.html">Back</a>
</div>
</div>
<div data-role="footer">
    <h4>© 2013 Nick Willcox</h4>
</div>

任何帮助都会很棒。

4

1 回答 1

1

你的滚动代码在哪里?

看看这个答案。它解释了如何滚动到一个元素。

编辑

我不知道“跟随 div 作为链接”是什么意思。div不是链接,加载div是什么意思?

如果您想使用 javascript 打开另一个链接,您可以使用:

window.location = http:\\www.google.com
于 2013-04-17T20:10:24.237 回答