PHP如何编辑HTML元素内容?

时间:2014-04-21 13:35:35

标签: php html

就像$('#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>

是否有任何更短的方式,每次都不起作用。

1 个答案:

答案 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>