logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

js正则表达式 URL格式匹配 http替换成https

匹配替换http为https:function urlConversion(path) {let reg = /^(https?:\/\/)([0-9a-z.]+)(:[0-9]+)?([/0-9a-z.]+)?(\?[0-9a-z&=]+)?(#[0-9-a-z]+)?/ipath = path.replace(reg, "https://$2$3$4$5$6");return path

开发中,前端、后端、前台、后台的理解

开发中,通常会提到前端、后端、前台、后台的字眼,有时候会搞混,下面是个人对这些词的理解:前端:几乎所有页面(网页、手机页面)都是使用前端技术做出来的,前端技术常用的有node.jS,HTML,CSS及JavaScript,jsp(jsp个人觉得也算)等,页面的开发可以理解为前端。开发页面的人叫做前端工程师(网页设计师)。后端:一般指的是编写java代码,使用Servlet、Spring、Sprin

#java#后端#前端
idea开发工具导入项目,打包报错java.lang.IllegalArgumentException: Malformed \uxxxx encoding.解决方法

idea开发工具导入项目,打包报错java.lang.IllegalArgumentException: Malformed \uxxxx encoding.解决方法

文章图片
#intellij-idea#java
Java后端接收数组 或 对象

1.前端不做处理,var roleIds = new Array();$("input[name='uRole']:checked").each(function(index,element){let roleId = $(element).attr("data-roId");roleIds[index] = roleId;});$.ajax({type: "post",url: baseUrl

java生成自增单号(字符+日期+数字)

【代码】java生成自增单号(字符+日期+数字)

#java#开发语言
java中将http 切换成 https

public class HttpsUtil {private static final String HTTPS = "https://";private static final String HTTP = "http://";/*** https 切换 (不包含scheme,http://)* @param request* @param url* @return*/public stati

Windows本地安装nginx,修改端口号,跨域配置

Windows本地安装nginx,修改端口号,跨域配置

#nginx#windows#运维
react错误 index.js:1 Warning: Invalid DOM property `class`. Did you mean `className`?

在react这个错误的原因是class是关键字,然后className是类名,把class改为className就可以啦!错误代码:index.js:1 Warning: Invalid DOM property class. Did you mean className?

HTML中input多选框

<form action="">车型:<input type="checkbox" name="car" value="car1">雅阁<input type="checkbox" name="car" value="car2">思域<input type="checkbox" name="car" value="car3">特斯拉<input

如何判断input 中checkbox 中是否勾选

html代码:<input id="id" type="checkbox" >js代码:<script type="text/javascript">$(function(){$("#id").click(function(){if($(this).prop("checked")==true){console.log("勾选");} else{console.log("未勾

#javascript
    共 39 条
  • 1
  • 2
  • 3
  • 4
  • 请选择