const getNetworkPictures = (img) => {
var imgSrc = ""
var str = new RegExp("http");
console.log(str.test(img))
if (str.test(img))...
yekong
3年前 (2022-03-12)
喜欢
var fileName = "wanjunshijiecom 2022-02-13 at 20.38.28.jpg";
方法1
var fileExtension = fileName.substring(fileName.lastIndexOf('.'...
yekong
3年前 (2022-03-04)
喜欢
this.ids.forEach((type, index) => {
if (type == item.id) {
this.ids.splice(index, 1)
}
});
...
yekong
3年前 (2022-02-28)
喜欢
function getFileName(url) {
var a = url;
var b = a.split("/");
var c = b.slice(b.length - 1, b.length).toString(String).split(&...
yekong
3年前 (2022-02-14)
喜欢
var str=new RegExp("http");
console.log(str.test("https://www.wanjunshijie.com"))//test方法返回值为(true或者false)
...
yekong
3年前 (2022-02-12)
喜欢
将富文本字符串中的相对地址图片替换为绝对地址图片
that.data.content = that.data.content.replace(/\/ueditor/g, configs.baseUrl + '\/ueditor')
替换前:
"content"...
yekong
3年前 (2022-02-09)
喜欢
Math.round(new Date() / 1000)
...
yekong
3年前 (2022-02-07)
喜欢
index下标 长度number
that.listactive.splice(index, number)
...
yekong
3年前 (2022-02-06)
喜欢
datalist.splice(0, 0, {
id: '',
name: '全部'
});
...
yekong
3年前 (2022-02-02)
喜欢
computed: {
remark: function() {
var msg = this.item.remark.replace(/<\/?[^>]*>/g, ''); //去除HTML Tag
msg = msg.replace(/...
yekong
3年前 (2022-01-31)
喜欢