我有被設定爲一個變量如何通過一個變量/和在JavaScript的onclick功能
var imagepath = "../Resources/Images/teamLogo1.png";
現在的圖像我要通過這個作爲一個參數的點擊一些路徑參數的的onclick功能
請檢查fiddle here
我追加的形象和我需要寫的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);
};
請在此複製相關代碼;現在人們需要看到小提琴完全瞭解你所問的。 –
好的代碼中添加了!謝謝 –