
前端基础
进击的dog
种一棵树最好的时机是十年前,其次是现在。
展开
-
使用jquery中ajax 上传文件
1.代码html<form id="formImg" action="" onsubmit="ajaxUpload();" enctype="multipart/form-data" method="post"> <input type="file" name="file"> <input type="text" ...原创 2019-04-28 14:22:04 · 1327 阅读 · 0 评论 -
HttpRequest中几种常见的ContentType
1.application/x-www-form-urlencoded(1)不属于http content-type规范,通常用于浏览器表单提交,数据组织格式:name1=value1&name2=value2,POSTt时会放入http body,GET时,显示在在地址栏。最常见的 POST 提交数据的方式了。浏览器的原生 form 表单,如果不设置 enctype 属性,那么最终就...原创 2019-05-16 13:33:23 · 2351 阅读 · 0 评论 -
实现点击图片放大查看功能
1.html 代码<div id="imgEnlargeDiv" style="display: none; text-align: center;position: fixed;z-index: 1000;top: 0;left: 0; width: 100%;height: 100%;background-color: rgba(255,255,255,.9);">...原创 2019-05-29 11:58:07 · 9492 阅读 · 0 评论