如何使用javascript和ajax调用php脚本?

时间:2012-05-29 11:37:00

标签: php html ajax onclick

我有这段代码:

<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript">
function doSomething() {
  $.get("supcont.php");
  return false;
}
</script>

我希望在点击img时调用此函数,所以我使用了这个

<a href="#" onclick="doSomething();">
  <img src="photo/suppc.png" width="295" height="36" href="" target="fenetreA"/>
</a>

但这不起作用,任何一个可以帮助我的人

3 个答案:

答案 0 :(得分:2)

$(function () {
    $('img').live('click', function () {
        $.ajax({
            url:"supcont.php",
            success:function (res) {
                alert(res);
            }
        });
    });
});

答案 1 :(得分:0)

把它放在任何地方:

<img id="img1" src="photo/suppc.png" width="295" height="36"    href="" target="fenetreA"/>

在包含JQuery.js

之后放置它
<script type="text/javascript">
$(document).ready(function () {
 $("#img1").click(function(){
       $.get("supcont.php");
    });
});
</script>

此处有更多信息:http://api.jquery.com/click/

答案 2 :(得分:0)

检查w3schools website。对此你很有帮助。