javascript - JS and SyntaxError: identifier starts immediately after numeric literal -
looking here, getting error script:
error:
syntaxerror: identifier starts after numeric literal
call_logs(140213fs01)
script:
"aocolumndefs": [ { "atargets": [ 3 ], // column target "mrender": function ( data, type, full ) { //alert (json.stringify(full)); //************show contents of object var str = full[2]; return '<a href="#;" onclick="call_logs('+str+')"; >' + data + '</a>'; } } ]
......
function call_logs(id){ alert("call logs funct :"+id); }
Comments
Post a Comment