码迷,mamicode.com
首页 >  
搜索关键字:webview html url    ( 209573个结果
滑动解锁
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi ...
分类:其他好文   时间:2021-04-15 12:22:57    阅读次数:0
Spring从IOC、DI、Aop到Mvc实现思路
配置阶段 配置web.xml文件 DispatcherServlet 设置init-param configLocation=classpath:application.properties 设置url-pattern /* 配置Annotation @Controller、@Service、@Re ...
分类:编程语言   时间:2021-04-15 12:17:07    阅读次数:0
去掉网页一直点击出现蓝色背景的效果
body, html{ -moz-user-select: none; /*火狐*//*选中文字时避免出现蓝色背景*/ -webkit-user-select: none; /*webkit浏览器*//*选中文字时避免出现蓝色背景*/ -ms-user-select: none; /*IE10*// ...
分类:Web程序   时间:2021-04-15 12:13:30    阅读次数:0
javaweb-AJAX
补充: 在html页面上创建一个ajax请求按钮: 创建一个servlet页面,接受这个请求,并回应: 发起ajax请求有4个步骤: 具体如下: 第3步和第4部对调: 输出进行一点优化: 在框架下使用AJAX: 在HTML页面中实现的代码: 建个地方放数据: 输出信息优化: 或者把数据类型改成jso ...
分类:编程语言   时间:2021-04-15 12:03:41    阅读次数:0
spring security环境框架搭建
1,pom依赖导入 注:spring boot版本须使用2。1.0以下版本,此次使用2.0.9版本 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</a ...
分类:编程语言   时间:2021-04-15 12:03:14    阅读次数:0
vue+swiper背景图随swiper改变
#####效果:div内部swiper滑动时,外部div背景图片随着变化 ######思路:获取swiper的索引,用:style定义背景图片 //template //外部背景图片 <div class="cont-box" :style="{backgroundImage: 'url(' + b ...
分类:其他好文   时间:2021-04-15 11:59:42    阅读次数:0
<input type="file"> 标签详解
详见:https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/Input/file#attr-multiple 使用 type="file" 的 <input> 元素使得用户可以选择一个或多个元素以提交表单的方式上传到服务器上,或者通过 J ...
分类:其他好文   时间:2021-04-14 12:31:04    阅读次数:0
jQuery ajax简单用法
<a id="ajax_submit">悄悄提交</a> <script> $('#ajax_submit').click(function () { $.ajax({ url:"/host/", type:'POST', data:{'k1':123,'k2':'root'}, success:f ...
分类:Web程序   时间:2021-04-14 12:21:15    阅读次数:0
SpringMVC初步认识
SpringMVC概述 SpringMVC通过Spring实现web模块,简化web开发 SpringMVC通过一套MVC注解,让POJO(Plain Ordinary Java Object)成为处理请求的控制器,而无需实现任何接口支持REST风格的URL请求 原生的MVC Model:模型,封装 ...
分类:编程语言   时间:2021-04-14 12:09:38    阅读次数:0
mybatis代码优化
创建db.properties配置文件,将所需内容写入 db.properties driver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost:3306/mybatis?useUnicode=true&characterEncoding=utf-8 ...
分类:其他好文   时间:2021-04-14 12:02:31    阅读次数:0
209573条   上一页 1 ... 98 99 100 101 102 ... 20958 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!