"update_check": false
...
4年前 (2021-08-15)
喜欢
Simple URLs
Simple URLs外部跳转插件 可以实现统计跳转次数
...
4年前 (2021-08-15)
喜欢
autoindex off;
...
4年前 (2021-08-15)
喜欢
开启特色图像/缩略图
// 开启特色图并设置默认大小
add_theme_support ( 'post-thumbnails' );
set_post_thumbnail_size ( 160 );
自动设置特色图像
放到主题的functions.php里面。...
4年前 (2021-08-15)
喜欢
经纬度转为数字,苹果可能是传为字符串导致无法访问
wx.getLocation({
type: 'wgs84',
success: function(res) {
...
4年前 (2021-08-14)
喜欢
document.oncopy = function () {
return false;
};
document.onmousedown = function (e) {
if (e.which == 2) {
return false...
4年前 (2021-08-14)
喜欢
Wxml
<input
type="number"
:placeholder="placeTips"
placeholder-style="font-size:24rpx"
v-model=&quo...
4年前 (2021-08-13)
喜欢
使用parseFloat处理一下经纬度避免出现经纬度是字符串的情况
wx.openLocation({
latitude: parseFloat(lat), // 纬度,浮点数,范围为90 ~ -90
longitude: pars...
4年前 (2021-08-13)
喜欢
方法一: indexOf()
var str = "123"
console.log(str.indexOf("2") != -1); // true
方法二:match()
var str = "123"
var r...
4年前 (2021-08-12)
喜欢
"h5" : {
"devServer" : {
"port" : 5100,
"disableHostCheck" : true,
...
4年前 (2021-08-11)
喜欢