我正在努力学习Jquery。 我有一个问题:我必须动态发送一个json作为函数的参数。我的代码是这样的:
$('#grafo').append('<a class="list-group-item graph" href="#" id="' + nome.replace(/ /g,'') + '" onclick="printAnnotation(\'' + json + '\',\'' + index + '\')">' + name + '</a>');
我想得到一个json,但结果是一个字符串。
我该如何解决?
PS:抱歉我的英语不好。答案 0 :(得分:0)
尝试从脚本添加事件处理程序(https://api.jquery.com/click/):
$('#grafo').click(
function()
{
printAnnotation( json, index );
}
);