我正在动态创建锚标签
for (var i = 0; i < json.length; i++)
{
<td><a href='#' id=" + json[i].id + " onclick=getId('" + json[i].id + "','"+ json[i].text +"')>" + json[i].text + " </a></td>
}
在onclick
我定义的函数中
function getId(ID,text)
{
console.log(ID);
console.log(text);
}
在这种情况onclick
下,如果文本值不包含任何空格或单词之间的间隙,我可以在控制台中获取文本值,如果文本包含任何空格,那么它会显示类似Unexpected token ILLEGAL
.