我使用HTML + jQuery开发了一个Web项目,现在我正面临着从iOS设备访问我的应用程序中的一些问题。
在我的项目中,我使用工具提示进行文本框控件。工具提示在桌面浏览器(Chrome,Firefox,IE)中运行良好,但是当谈到移动设备(触摸设备)时,主要是iOS设备工具提示没有隐藏。它阻止了阻止其他控件的页面。
工具提示代码:JS
$(document).tooltip({
position: {
my: "center bottom-20",
at: "center top",
using: function(position, feedback) {
$(this).css(position);
$("<div>")
.addClass("arrows")
.addClass(feedback.vertical)
.addClass(feedback.horizontal)
.appendTo(this);
}
}
});
我在网上搜索了很多,我可以在一些帖子中看到jQuery工具提示在iOS设备中有一些依赖性。
请建议我解决此问题的好方法。
感谢任何帮助。