如何使用Javascript在onclick
函数中发送参数。
以下是需要在onclick
函数中设置的变量。
var address ="Madison Avenue New York NY 10022";
var title ="Sydney NSW";
$('#MapDiv').html('<a href="javascript:void(0);" onclick="showGoogleMap();"><img src="assets/CommonAssets/time.png" /></a>');
答案 0 :(得分:1)
为ID
设置<a>
,然后在jQuery中使用:
$('#id').click(function(address, title){
//code here
})
答案 1 :(得分:1)
var address = "Madison Avenue New York NY 10022";
var title = "Sydney NSW";
$('#MapDiv').html('<a href="javascript:void(0);" onclick="showGoogleMap(\''+address+'\',\''+title+'\');"><img src="assets/CommonAssets/time.png" /></a>');