所以我的代碼使用json2html塊是如何從這個大div元素獲取圖像元素?
var template = {'<>':'div','class':'col-lg-12 col-md-24 col-sm-24 col-xs-24','html':[
{'<>':'div','class':'product col-lg-offset-1 col-lg-22 col-md-offset-0 col-md-24 col-sm-offset-0 col-sm-24 col-xs-offset-0 col-xs-24','html':[
{'<>':'div','class':'prodimg col-lg-8 col-md-8 col-sm-8 col-xs-8','html':[
{'<>':'img','src':'${source}','alt':'${name}', 'class':'img-responsive'}
]},
{'<>':'div','class':'prodetails col-lg-16 col-md-16 col-sm-16 col-xs-16','html':[
{'<>':'span','class':'prodname','html':'${name}'},
{'<>':'div','class':'mT20','html':[
{'<>':'p','html':'${info1}'},
{'<>':'p','html':'${info2}'},
{'<>':'p','html':'${info3}'}
]}
]}
]}
]};
中的加粗部分的模板是我想運行一個函數showPic(IMG)一個圖像;其中「img」是模板的第4行。
與「產品」類的div是我想要由用戶點擊,它的目標是img並將img發送到showPic。
我希望它使用jQuery來定位.product。
下面是代碼是如何在這一刻。 http://ttrltest.000webhostapp.com/tbcl-products.html
我試圖 編輯的幫助從回覆:
$('.product').click(function(){
showPic($(this).find('img'));
});
,我無法從圖像元素的src屬性。
感謝您對兒童的瞭解和查找。所以我意識到代碼沒有運行,因爲它在錯誤的JS文件中。我修正了這個問題,但是當showPic使用你的代碼執行時,showPic無法從圖像中獲取src屬性。我必須從圖像元素中獲取圖像的來源。 我會更新問題。 這是$(this).find的控制檯日誌('img') > [img.img-responsive,prevObject:r.fn.init(1)] – KCB4Rockstar