2017-04-21 19 views
1

私はPHPファイルを持っています。これでmysqlからpdfファイルを表示できます。このpdfをHTMLファイルのdivに表示したいのですが、これはjavascriptの関数です。 var id ;html divにpdfファイルを表示するには

function displayNotes() { 
    //id=localStorage.getItem("userid"); 
    id = 160; 
    var urlString = "id=" + id; 
    $.ajax({ 
     url : "http://localhost/notePdf.php", 
     type : "GET", 
     cache : false, 
     data : urlString, 
     success : function(response) { 
      console.log(response); 
      document.getElementById("pdf").innerHTML = response; 

     } 
    }); 
} 

、これは私のhtmlでdivの

<div class="content"> 
         <div id="form"> 
          <form action="" id="contactForm" method="post"> 
           <span>Email</span> 
           <input type="text" name="email" class="email" placeholder="Enter your email" tabindex=2 /> 
           <span>Email</span> 
           <input type="text" name="email" class="email" placeholder="Enter your email" tabindex=2 /> 
           <span>Message</span> 
           <textarea class="message" tabindex=4 id="pdf"></textarea> 
           <input type="submit" name="submit" value="Send e-mail" class="submit" tabindex=5> 
          </form> 
         </div> 
         </div> 

答えて

0

使用embedタグの代わりに、テキスト領域の場合は、あなたのそれはsrcとembedタグと広告に場所を作成するために、DOMノードを使用し作成するためにJavaScriptを使用してjsの中

<embed id = 'pdf' src="(location to your pdf file)"></embed> 

document.getElementById("pdf").src = response; 
+0

私はMySQLデータベースのすべての情報を選択するPHPからPDFファイルを取得しています – Amal

関連する問題