这个Jquery帖子有什么问题吗?

时间:2010-09-09 22:40:07

标签: php javascript jquery mysql html

我试图将id属性传递给file.php,但每次都给我0,当我尝试将其插入数据库时​​,提供了javascript和html!

$(function() {
      $(".follow").click(function(){
        var element = $(this);
        var I = element.attr("id");
        var info = 'id=' + I;

        $.ajax({
            type: "POST",
            url: "file.php",
            data: info,
            success: function(){}
            });

        $("#follow"+I).hide();
        $("#remove"+I).show();
        return false;

      });
});

html文件:

<div id="follow1"><a href="#" class="follow" id="1"><span class="follow_b"> Follow </span></a></div>

P.S。它将数值插入数据库

file.php:

<?php

$id =$_POST['id'];

msql_insert.........
?>

1 个答案:

答案 0 :(得分:1)

在这种情况下可能无关紧要,但元素的ID不应该以数字开头。