ie兼容问题
使用babel-polyfill
npm install --save babel-polyfill
import "babel-polyfill"
这里使用的codekit进行编译
...
yekong
3年前 (2021-08-26)
喜欢
这是IE不兼容的问题。属性之间是要用","分隔的,但最后一个属性的后面在IE中是不能有的,
删除错误行对应的“,”
...
yekong
3年前 (2021-08-26)
喜欢
that.form = res.data.data
that.form.dateTime = that.form.dateTime.replace(/点/g, ":");
that.form.dateTime = that.form.dateTime.repl...
yekong
3年前 (2021-08-24)
喜欢
基础类型
boolean
string
number
array
null
undefind
object
tuple
enum
void
never
any
高级类型
union 组合类型
Nullablle可空类型
Literal 预定义类型
...
yekong
3年前 (2021-08-21)
喜欢
var number1=1;
let number2=2;
const number3=3;
少用var 多用let
...
yekong
3年前 (2021-08-20)
喜欢
ES5 ES3 支持目前所有主流浏览器
没有ES4
ES6=ES2015目前浏览器不支持,未来会支持。
ES2016 就是 (ES7)
ES2017 就是 (ES8)
...
yekong
3年前 (2021-08-20)
喜欢
getdate() {
var that = this;
let date = new Date();
if (date.getHours() >= 0 && d...
yekong
3年前 (2021-08-18)
喜欢
demo
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content=...
yekong
3年前 (2021-08-15)
喜欢
经纬度转为数字,苹果可能是传为字符串导致无法访问
wx.getLocation({
type: 'wgs84',
success: function(res) {
...
yekong
3年前 (2021-08-14)
喜欢
document.oncopy = function () {
return false;
};
document.onmousedown = function (e) {
if (e.which == 2) {
return false...
yekong
3年前 (2021-08-14)
喜欢