我嘗試在我的網站上的AJAX請求中添加圖像,但由於某種原因,圖像不顯示。雖然,生成的HTML是正確的。在JQuery中使用.html時圖像沒有顯示
這是我的代碼:
$('.field-name-field-testimony-photo').wrap('<div class="picture-preview-container" />');
$('<div class="picture-preview" />').insertAfter('.picture-preview-container');
$('.form-item input.form-file', context).change(function() {
$parent = $(this).closest('.form-item');
$('.picture-preview').html('<img src="https://www.google.be/path-to-my-image.jpg" />');
});
而生成的HTML是正確的,因爲據我可以看到... ...
<div class="picture-preview">
<img src="https://www.google.be/path-to-my-image.jpg" />
</div>
我是不是忘了什麼東西在我的代碼,以確保該圖片出現?
對不起,一個錯字...我確實使用了src – Michiel 2013-03-01 11:34:12
如果你生成的HTML是正確的,那麼問題就在其他地方。也許'圖片預覽'股利,或圖像,是不可見的一些CSS相關的原因? – Aioros 2013-03-01 11:34:22
更改爲src後,你是否仍然有問題? – 2013-03-01 11:34:49