关于项目中ajax 操作 原生项目遇到的问题
Posted yuwen1995
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于项目中ajax 操作 原生项目遇到的问题相关的知识,希望对你有一定的参考价值。
单选框动态赋值
$(‘input[name=pszt][value=‘+val+‘]‘).attr("checked",true);
置顶的几种方式
window.scrollTo(0,0)
document.getElementById("id").scrollIntoView();
通过window.location.href下载文件 解决url 传参中文乱码
window.location.href = encodeURI(url)
ajax 添加headers 以及更改contentType
$.post({
url: apiAddress + "api",
dataType: "json",
data: submitData,
headers: {
‘X-XSRF-TOKEN‘: $.cookie(‘XSRF-TOKEN‘)
},
contentType: "application/json;charset=UTF-8",
success: function (data, msg) {
},
error: function () {
alert(‘error‘)
}
});
以上是关于关于项目中ajax 操作 原生项目遇到的问题的主要内容,如果未能解决你的问题,请参考以下文章