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)
}



posted @ 2021-05-11 09:58  FourAu  阅读(1480)  评论(0编辑  收藏  举报