JS中使用JSON作为方法参数传值
//准备一个josn数据
data = {
"name":"fourau",
age:20,
"sex":男
}
//进行数据转字符串
<a title=\"编辑\" onclick=\'compilertype(\""+encodeURI(JSON.stringify(data))+"\")\' href=\"javascript:;\">
function compilertype(data){
//进行解码
data = JSON.parse(decodeURI(data));
console.log(data)
}