javaweb上传文件 上传文件的jsp中的部分 上传文件同样可以使用form表单向后端发请求,也可以使用 ajax向后端发请求 1.通过form表单向后端发送请求 <form id="postForm" action="${pageContext.request.contextPath}/Uplo ...
分类:
编程语言 时间:
2020-06-08 12:32:00
阅读次数:
64
一.编写两个页面register.jsp和show.jsp register.jsp: <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html> <ht ...
分类:
其他好文 时间:
2020-06-08 10:57:04
阅读次数:
66
一、安装tclwgethttp://downloads.sourceforge.net/tcl/tcl8.6.1-src.tar.gz/usr/local/src/tcl8.6.1/unix./configure--prefix=/usr--mandir=/usr/share/man--without-tzdata$([$(uname-m)=x86_64]&&echo--enabl
分类:
其他好文 时间:
2020-06-08 09:24:20
阅读次数:
97
startup.cs文件 app.UseEndpoints(endpoints => { endpoints.MapControllerRoute( name: "Areas", pattern: "{area:exists}/{controller=Index}/{action=Index}/{i ...
分类:
其他好文 时间:
2020-06-07 11:22:29
阅读次数:
84
jQuery Mobile 文本输入框 输入字段是通过标准的 HTML 元素编码的,jQuery Mobile 将为它们添加样式使其看起来更具吸引力,在移动设备上更易使用。您也能使用新的 HTML5 的 <input> 类型: 实例 <form method="post" action="demo_ ...
分类:
Web程序 时间:
2020-06-07 11:17:53
阅读次数:
83
jQuery Mobile 选择菜单 Iphone 上的选择菜单: Android/SGS4 设备上的选择菜单: <select> 元素创建带有若干选项的下拉列表。 <select> 元素内的 <option> 元素定义了列表中的可用选项: 实例 <form method="post" action ...
分类:
Web程序 时间:
2020-06-07 11:04:49
阅读次数:
91
一、什么是屏幕刷新机制 屏幕的刷新包括三个步骤: CPU 计算屏幕数据 GPU 进一步处理和缓存 Display 将缓存中(buffer)的屏幕数据显示出来。 屏幕刷新机制包含以下几点要素,需要我们了解和掌握: View 发起刷新的操作时,最终是走到了 ViewRootImpl 的 schedule ...
分类:
移动开发 时间:
2020-06-07 10:55:24
阅读次数:
79
app.UseEndpoints(endpoints => { endpoints.MapControllerRoute( name: "Areas", pattern: "{area:exists}/{controller=Index}/{action=Index}/{id?}", default ...
分类:
其他好文 时间:
2020-06-07 10:50:50
阅读次数:
113
jQuery Mobile 滑动条控件 滑动条允许您从一个范围的数字中选择一个值: 如需创建滑动条,请使用 <input type="range">: 实例 <form method="post" action="demoform.php"> <label for="points">进度:</lab ...
分类:
Web程序 时间:
2020-06-07 10:49:11
阅读次数:
80
鼠标+键盘事件 一、鼠标事件 Selenium提供ActionChains类中 from selenium.webdriver.common.action_chains import ActionChains 鼠标操作的常用方法: 操作 方法 右击 context_click() 双击 double ...
分类:
其他好文 时间:
2020-06-07 09:25:04
阅读次数:
72