
前端
CodeArtist.Han
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
springboot前后端访问出现跨域问题的后端最终解决方案
springboot前后端访问出现跨域问题的后端最终解决方案import org.springframework.context.annotation.Configuration;import org.springframework.web.servlet.config.annotation.CorsRegistry;import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;/** * @PackageNa原创 2020-10-21 11:24:48 · 355 阅读 · 0 评论 -
window,location,href带参数传值与接收的方法
传值js写法:/*跳转传值页面*/window.location.href="http://地址?id="+参数+""接受值js写法var id= location.search.replace(/[^\d]/g, "")alert(id);原创 2019-12-10 17:37:40 · 17714 阅读 · 0 评论 -
bootstrap之手机页面自适应(带点击特效--出现(富强,民主,和谐))
发这篇文章的出处是我发现我用了bootstrap之后在电脑上可以自适应在手机上字体偏小(页面整个变小了),其实是忘记加一个标签手机界面自适应(这里只贴出head标签中用到的)<head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> ...原创 2019-02-25 17:44:20 · 1001 阅读 · 0 评论 -
如何将自己电脑作为服务器将项目发布至外网
如何将自己电脑作为服务器将项目发布至外网(springboot+mysql+tomcat)开发工具:IDEA话不多说开整一:将您的NB项目打成war包:怎麽打?来直接看:1.注:在主函数中继承“SpringBootServletInitializer ”,并按照如下所写来完成@SpringBootApplicationpublic class RedeemerApplication ...原创 2019-07-24 17:21:04 · 3659 阅读 · 0 评论