前端经验

jquery中ajax跨域请求带上cookie数据

基于jq开发中使用ajax跨域数据请求,实现cookie携带代码详解! 1、跨域设置 crossDomain 跨域 crossDomain: true, 2、cookie数据携带 xhrFields: { withCredentials: true }, xhrFields 大概的意思是,默认情况下...

前端经验

css设置div盒子上下左右都居中

直接上代码:很简单 div style=width: 200px;height: 200px;margin: 0 auto;background: #007AFF;左右居中1/div div style=width: 200px;height: 200px;margin: 0 auto;background: red;position: absolute;left: 0;right: 0;左右居中2/div...

微信小程序

uni-app微信小程序滑动事件

view class = relative @touchmove = handletouchmove @touchstart = handletouchstart @touchend = handletouchend /view data () { return { flag : 0 , text : , lastX : 0 , lastY : 0 }} methods: { handletouchmove : function ( event ) { // console....

前端经验

JavaScript点击或其他事件下载图片

将picurl的值赋值为图片地址,可以是网络图片地址或本地临时路径图片function savePic(){ var picurl = $(#picurl).attr(src ); // alert(picurl); savePicture(picurl);} var triggerEvent = touchstart;functionsavePicture(U...

前端经验

javascript获取接收链接传递参数的方法

以下方法是通过canshu变量接收链接传递的id的值,下面的方法不要忘记。 var canshu = getQueryVariable(id); function getQueryVariable(variable) { var query = window.location.search.substring(1); var vars = query.split...