H5页面与原生交互项目中经常遇到,今天做个小结。 从iOS原生的角度讲,我们可以使用UIWebView、WKWebView组件来展示H5页面,那么两者有什么区别呢? 讲述UIWebView只是让大家了解下这个历史,按现在的情况我们主要使用WKWebView 一、推出时间 UIWebView从iOS2 ...
分类:
移动开发 时间:
2021-03-29 11:49:35
阅读次数:
0
用spyder运行正常,程序上传到服务器,添加计划任务,运行报错:ModuleNotFoundError: No module named 'selenium',实际上已经安装了。 搜索一番,有人说程序前面加上: import sys import os curPath = os.path.absp ...
分类:
其他好文 时间:
2021-03-29 11:49:17
阅读次数:
0
下载maven安装包 下载地址:https://maven.apache.org/download.cgi wget https://mirrors.bfsu.edu.cn/apache/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar. ...
分类:
其他好文 时间:
2021-03-29 11:46:34
阅读次数:
0
attribute:html标签的属性 <div class="left" aa="bb" id="div1" checked="checked"></div> div1 = document.getElementById("div1"); div1.getAttribute("checked"); ...
分类:
编程语言 时间:
2021-03-26 15:29:51
阅读次数:
0
5. CSS选择器 CSS选择器(Cascading Style Sheet,层叠样式表) css代码的写法:hl{color:red;} 选择器{css属性:属性值;} css代码的引入 # 方式一?head标签里面写<style> div{ background-color:red; heigh ...
分类:
Web程序 时间:
2021-03-26 15:17:00
阅读次数:
0
<template> <div class="row"> <el-amap id="map" vid="amapDemo" :zoom="zoom" :center="center"> <el-amap-marker v-for="marker in markers" :key="marker.id ...
分类:
其他好文 时间:
2021-03-18 14:39:11
阅读次数:
0
实验任务1 #include <stdio.h> int main() { printf(" 0 \n"); printf("<n>\n"); printf("I I\n"); printf("\n"); printf(" 0 \n"); printf("<n>\n"); printf("I I\n ...
分类:
编程语言 时间:
2021-03-18 14:31:02
阅读次数:
0
package main import ( "fmt" "github.com/go-redis/redis" ) func main() { client := redis.NewClient(&redis.Options{ Addr: "127.0.0.1:6380", Password: "" ...
分类:
其他好文 时间:
2021-03-18 14:25:19
阅读次数:
0
1 package com.wonders.proxy.jdk; 2 3 import java.lang.reflect.InvocationHandler; 4 import java.lang.reflect.Method; 5 import java.lang.reflect.Proxy; ...
分类:
其他好文 时间:
2021-03-18 14:24:27
阅读次数:
0
题意&思路:Wuuuu~,其实就是问总和是不是为M #include<iostream> #include<cstring> #include<cmath> #include<algorithm> #define rep(i,n) for(i=1;i<=n;++i) #define ms(a,n) ...
分类:
其他好文 时间:
2021-03-18 14:17:01
阅读次数:
0