我有一些设置为变量的路径
var imagepath = "../Resources/Images/teamLogo1.png";
现在单击图像时,我必须在其 onclick 函数中将其作为参数传递
请在这里检查小提琴
我正在附加图像,我需要在那里编写 onclick 函数编辑:包括完整代码
$(document).ready(function(){
var imagepath = "../Resources/Images/teamLogo1.png";
$("#Testing").append('<img src="http://www.magerempowerment.com/v2/blog/wp-content/uploads/2012/07/doubt_dice.jpg" onClick="testfunction('+ imagepath + ')">');
});
function testfunction(imagepath){
alert(imagepath);
};