由于一些奇怪的原因,这似乎不起作用,我试图使用这样的静态变量,但是直到我将它移出isset'测试后才会工作。我认为这与它无法传递获取这样的数据有关吗?
<?php
if(isset($_GET['test']))
{
?>Hey<?php $count='1'; echo $count;
}
?>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script></head>
<div id="main">
<a><div id="dialogue" style="cursor: pointer; cursor: hand;">Click to continue</div></a>
</div>
<script type="text/javascript" language="javascript">
$(document).ready(function() { /// Wait till page is loaded
$('#dialogue').click(function(){
$('#main').load('dialogue.php?test&count=<?php echo $count ?>', function() {
// can add another function here
});
});
}); // End of Wait till page is loaded
</script>
答案 0 :(得分:0)
加载定义
.load( url [, data ] [, complete ] )
尝试使用数据,例如https://api.jquery.com/load/
中的此示例$( "#objectID" ).load( "test.php", { "choices[]": [ "Jon", "Susan" ] } );