更多兼容性问题:https://blog.csdn.net/weixin_43990297/article/details/113556036
一、时间格式
在使用new Date()时,对于“2021/05/17”, “2021-05-17”这两种格式,ios仅支持第一种格式,android则都支持。
// 转化为ios和android都支持的格式
var dateTime = “2021-05-17”;
var newDateTime = dateTime.replace(/-/g, "/"); // 2021/05/17
二、调用摄像头
在图片上传时,通过设置capture=camera
可以调用摄像头。当要调用前置摄像头时,可设置capture=user
,不过改种方式对android某些机型不支持,所以解决方式是通过判断手机系统动态修改capture
的值。
function isIos() {
let ua = navigator.userAgent.toLowerCase();//获取浏览器的userAgent,并转化为小写——注:userAgent是用户可以修改的
return (ua.indexOf('iphone') != -1) || (ua.indexOf('ipad') != -1);
}
var capture = isIos() ? 'user' : 'camera';
三、复制功能
ios不支持input.select(),解决方式如下。
copyUrl() {
const textString = '你要复制的文案';
let input = document.querySelector("#copy-input");
if (!input) {
input = document.createElement("input");
input.id = "copy-input";
input.readOnly = "readOnly"; // 防止ios聚焦触发键盘事件
input.style.position = "absolute";
input.style.left = "-1000px";
input.style.zIndex = "-1000";
document.body.appendChild(input);
}
input.value = textString; // ios必须先选中文字且不支持 input.select();
selectText(input, 0, textString.length);
console.log(document.execCommand("copy"), "execCommand");
if (document.execCommand("copy")) {
document.execCommand("copy")
console.log('复制成功');
} else {
console.log('设备不兼容');
}
input.blur();
}
selectText(textbox, startIndex, stopIndex) {
if (textbox.createTextRange) {
//ie
const range = textbox.createTextRange();
range.collapse(true);
range.moveStart("character", startIndex); //起始光标
range.moveEnd("character", stopIndex - startIndex); //结束光标
range.select(); //不兼容苹果
} else {
//firefox/chrome
textbox.setSelectionRange(startIndex, stopIndex);
textbox.focus();
}
}
四、控制文本溢出
// 单行
{
width: 100px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
// 多行
{
width: 100px;
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}
五、发送短信
// android
<a herf="sms:10086?body=helloworld">发送短信</a>
// ios
<a herf="sms:10086&body=helloworld">发送短信</a>