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