//准備一個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)
}
