Я не могу встроить изображения в iFrame
Я пытаюсь встроить его.Также изображения не будут работать, даже если местоположение или каталог изображения верны.
Я использую этот код, но ничего не произошло.
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
$('#buttons').click(function(){
if(!$('#iquery').length) {
$('#iframeHold').html('<iframe frameborder="0" scrolling="no" id="iquery" src="images/test2.png" width="548" height="180"></iframe>');
}
});
});
</script>
<button class="button"id="buttons">Check For Codes</button>
<div id="iframeHold"></div>