jquery移动错误页面持续时间
我可以通过这样做来自定义错误消息:
<script>
$(document).bind('mobileinit', function () {
$.mobile.pageLoadErrorMessage = 'Use full version';
})
</script>
但是消息消失得太快了。 有什么办法可以自定义弹出消息的持续时间吗?
I'm able to customize an error message by doing this:
<script>
$(document).bind('mobileinit', function () {
$.mobile.pageLoadErrorMessage = 'Use full version';
})
</script>
But the message disappears too fast.
Is there any way to customize duration of the pop-up messages?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
获取 jquery-mobile 的未压缩版本并根据您的需要修改代码,然后重新压缩它,您将获得自定义延迟。我查看了配置,似乎没有办法设置它。
get the un-compressed version of jquery-mobile and modify the code for your needs, then re-compress it back and you will have your custom delay. I have looked in the config and there seems to be no way to set this.
我想 setTimeout 将是一个解决方案。
setTimeout would be a solution, i guess.