我正在学习PHP和jQuery。我有一个名为renderPicture.php的PHP文件,它在HTML IMG标记中返回动态创建的图像。我希望在我的网页上点击事件后更改该图像 - 无需重新加载页面。我知道我需要对renderPicture进行jQuery Ajax调用。我知道我需要将div的内部HTML设置为jQuery Ajax调用的结果。我在这里学习了如何设置内部HTML How to replace innerHTML of a div using jQuery?但是我不太确定如何使用AJAX调用来做到这一点。
如何使用jQuery将DIV的内部HTML设置为PHP文件的输出?
这是jQuery和一些HTML:
<script>
$(document).ready(function(){
$("#myDIV").click(function(){
//var resultOfAjaxCall = $.ajax({ url: './renderPicture.php',});
$("#myDIV").html(resultOfAjaxCall); //This is roughly what I want to do
});
});
</script>
</head>
<div id='myDIV'>
<?php
$cryptinstall="./renderPicture.php";
include $cryptinstall;
?>
</div>
</html>
这是renderpicture.php
<?php
$cryptinstall="./cryptographp.fct.php";
include $cryptinstall;
if(session_id() == "") session_start();
$_SESSION['cryptdir']= dirname($cryptinstall);
$cfg=0;
echo "<img id='cryptogram' src='".$_SESSION['cryptdir']."/cryptographp.php?cfg=".$cfg."&".SID."'>";
ren
?>
答案 0 :(得分:3)
使用.load()
:
$(document).ready(function(){
$("#myDIV").click(function(){
$("#myDIV").load('renderPicture.php');
});
});
这是:
的简写$(document).ready(function(){
$("#myDIV").click(function(){
$.ajax({
url: './renderPicture.php',
success: function(resultOfAjaxCall) {
$("#myDIV").html(resultOfAjaxCall);
}
});
});
});
每当你想对AJAX调用的结果做一些事情时,你必须在回调函数中执行它。
答案 1 :(得分:0)
答案 2 :(得分:0)
使用jQuery.get()
发出ajax请求。
$.get('ajax/test.html', function(data) {
$('#myDIV').html(data);
alert('Load was performed.');
});