我有一个可以在浏览器中完美运行的网络应用程序——无论是在桌面还是移动设备上。当我尝试通过添加来美化它时,问题就来了:
<meta name="apple-mobile-web-app-capable" content="yes" />
这也很好用——直到我需要删除应用程序中的记录为止。
我也在使用我发现的这个伟大的要点 - https://gist.github.com/1042167来阻止应用程序切换到移动 safari:
<script type="text/javascript">
(function(document,navigator,standalone) {
// prevents links from apps from oppening in mobile safari
// this javascript must be the first script in your <head>
if ((standalone in navigator) && navigator[standalone]) {
var curnode, location=document.location, stop=/^(a|html)$/i;
document.addEventListener('click', function(e) {
curnode=e.target;
while (!(stop).test(curnode.nodeName)) {
curnode=curnode.parentNode;
}
// Conditions to do this only on links to your own app
// if you want all links, use if('href' in curnode) instead.
if(
'href' in curnode && // is a link
(chref=curnode.href).replace(location.href,'').indexOf('#') && // is not an anchor
( !(/^[a-z\+\.\-]+:/i).test(chref) || // either does not have a proper scheme (relative links)
chref.indexOf(location.protocol+'//'+location.host)===0 ) // or is in the same protocol and domain
) {
e.preventDefault();
location.href = curnode.href;
}
},false);
}
})(document,window.navigator,'standalone');
</script>
我想知道这是否可以改变,所以 data-method="delete" 会很好玩吗?在那一刻——当我点击“删除”时——“你确定吗?” 确认框挂起一两秒钟,然后将我转回同一显示页面,没有发生删除...