
html
乐菜鸟
点个赞再走呗
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
两个有序数组合并最快的方法
/*** 该算法时间复杂度为O(m+n),m和n为两个数组长度*/public class DoubleSort { public static int[] sort(int[] one, int[] two){ int onesize = one.length; int twosize = two.length; int threesize = onesize + twosize; int[] three = new int原创 2020-12-03 18:14:54 · 1261 阅读 · 0 评论 -
各种正则校验规则:校验用户名正则,校验手机号,校验中文姓名,校验英文姓名,校验数字,校验银行卡,校验身份证号码,校验时间格式,校验 email(邮箱)
草稿原创 2020-06-11 18:24:24 · 5195 阅读 · 0 评论 -
Ajax请求提交List对象到后端,后端SpringMVC的接收方法
1、JQ前端代码 var studentArray= []; studentArray.push({age: "1", name: "李四"}); studentArray.push({age: "2", name: "张三"}); $.ajax({ url: "../test", type: 'POST', data: JSON.stringify(studentArray), dataType:'json',原创 2020-05-20 14:37:51 · 600 阅读 · 0 评论 -
html页面嵌套其他网站页面的方法
直接上代码:html页面嵌套其他网站页面的方法<div><!--第一种:使用object标签--> <object type="text/html" data="https://www.baidu.com" style="width:1000px; height:1000px"> <p>backup content</p> </object> <!--第二种:使用iframe 标签--&原创 2020-05-09 20:45:11 · 18636 阅读 · 1 评论