2016-12-18 16 views

答えて

0

このトピックによれば、Mobile Safari and iFrame src attribute 古いもののsrcプロパティを変更する代わりに、新しいiFrameを作成できます。

このような何か:

$(document).ready(function(){ 
    var id = ''; 
    $("#button").click(function() { 
     if (id) $('#' + id).remove(); //remove the old iframe 
     var url = $('#url').val(); 
     var iframe = document.createElement("iframe"); 
     var dt = new Date(); 
     id = "ifr" + dt.getTime(); 
     iframe.id = id; 
     iframe.src = url; 
     document.body.appendChild(iframe); 
    }); 
}); 
関連する問題