我想在javascript中添加IMG src標籤以將img源代碼傳遞給一個js變量'content:',然後將其傳遞給一個php變量''''':'。 我試過了,但我得到錯誤「未識別的對象」錯誤。在這種情況下,有沒有方法在JavaScript中添加img標籤。在PHP內部的IMG HTML標籤在javascript內
$html .= '
<script type="text/javascript">
$(".example-p-1").on("click", function() {
$.alert({
title: "You drawer is complete",
content: "<div style="text-align:center"><img style="width:80px;height:80px" src="https://thedailyoutfits.com/wp-content/draw.jpg"><br></div>",
});
});
</script>';
有人能讓我至少參考解決方案/此問題的鏈接 – SandeepTete