就像$('#elementid').html('html code');
一样,但在PHP中。有没有办法在不重新加载页面的情况下使用PHP更改实时内容?试过
<?php
echo '<script type="text/javascript">
$('#element').html('<p>I am a text</p>');
</script>'
?>
<div id='element'>I will be changed!</div>
是否有任何更短的方式,每次都不起作用。
答案 0 :(得分:0)
$.post('test.php','',function(response){
$('#element').html(res);
});
<强> test.php的强>
$name = "sham";
echo "this is my variable $name";
输出Html
<div id='element'>this is my variable sham</div>