Iphone 上的 jQTouch - 在 onclick 和 javascript 函数后跳转到特定 DIV
我刚刚开始使用jQTouch。 在 #contact
中,我有一个调用 javascript 函数 sendEmail()
的按钮,
如何在 javascript 函数中跳转到/显示 div #statusDiv
发送电子邮件后?
function sendEmail() {
// sending email
// --> how to jump to DIV called statusDiv
}
<div id="home" class="current">
</div>
<div id="contact" >
<ul class="rounded">
<li ><a id="emailButton" onclick="sendEmail()">Stuur email</a></li>
</ul>
</div>
<div id="statusDiv">
</div>
I am just starting to use jQTouch.
In #contact
I have a button that calls javascript function sendEmail()
How can I jump to/show the div #statusDiv
in the javascript function after sending the email?
function sendEmail() {
// sending email
// --> how to jump to DIV called statusDiv
}
<div id="home" class="current">
</div>
<div id="contact" >
<ul class="rounded">
<li ><a id="emailButton" onclick="sendEmail()">Stuur email</a></li>
</ul>
</div>
<div id="statusDiv">
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 jQtouch 对象中的 goTo 函数。像这样的东西:
Use the goTo function from the jQtouch object. Something like:
在最新版本中,您可以使用
第一个参数是部门名称,第二个参数是动画。
In latest version you can use
first argument is division name and second one is animation.