我有一個foreach
循環內一個div我使用,以顯示視圖內容傳遞動態類名的JavaScript函數
<div class="someclass" data-id="[email protected]">
<p> text1 </p>
<p> text2 </p>
<span class="otherClass embedIcon"></span>
</div>
我試圖使用
$(".embedIcon")
.click(function() {
html2canvas($(this).data('data-id'),{
onrendered: function (canvas) {
var myImage = canvas.toDataURL("image/png", 1);
window.open(myImage);
}
});
});
爲目標的id屬性
當我點擊應用embedIcon
類生成圖像的圖標時,我得到了迭代中所有div的圖像。
如何在單擊div內的圖標時獲取特定div的圖像?
後全部代碼。 – Mahi
它應該是這樣的'html2canvas($(this).data('id')' – Bharat
@Mahi我發佈了完整的代碼 – hello