想要在单击div时调用PHP页面?

时间:2011-01-26 14:26:27

标签: php javascript ajax html

我希望在使用AJAX点击<DIV>用户时调用PHP页面。同时我想将DIV的文本更改为LOADING .....

我对AJAX了解不多,所以请给我详细说明......

提前致谢......

3 个答案:

答案 0 :(得分:3)

使用jquery可以做到

$("div#id").click(function(){
 $(this).text("Loading...").load("/path/to/file.php");
});

答案 1 :(得分:0)

<div onclick="send_ajax_request(); document.getElementById('loading').style.display = 'block';"> 
  <div style="display: none" id="loading">Loading ...</div>
</div>

send_ajax_request()是调用ajax请求的函数。第二个语句将使内部div可见(style =“display:none”将使其默认不可见)。

答案 2 :(得分:0)

做类似的事。

< div class="loader" id="ajaxloaddiv">Initial data</div>

在ajax函数中使用:

$('#ajaxloaddiv').click( function() {
    $(this).text("Loading...");
    ...
    ... do processing here
    ...
    return false;
});