0

このコードで引数を渡すにはどうすればよいですか

$table += "<td>" + "<a href='#' onclick='myFunction(HERE_I_need_to_pass_an_argument);'>" + items[i].senderID +"</a>" +"------"+ items[i].startTime +"</td>";

function myFunction (myVariable) {
 // my other logic goes here
}

次のような警告を書くのを手伝ってくれませんか:

alertValue = 10;
$table += "<td>" + "<a href='#' onclick='alert(alertValue );'>" + items[i].senderID +"</a>" +"------"+ items[i].startTime +"</td>";

function myFunction (myVariable) {
 // my other logic goes here
}
4

1 に答える 1

2
$table += "<td>" + "<a href='#' onclick='alert("+alertValue+");'>" + items[i].senderID +"</a>" +"------"+ items[i].startTime +"</td>";
于 2013-06-06T20:21:35.623 に答える