jQuery - 在函数体之后缺少}

时间:2010-09-23 07:17:25

标签: jquery

问题出在哪里:我在函数体

之后出现错误:缺失}
(function($) { 
    $(document).ready( function() { 
        $("div.area_map").click( function () {
        alert('clicked'); 
        $('img.hoverswap', this).css({ 
            position:"absolute",
            left:"0px",
            top:"0px",
            width: "120",
            height: "52",
            zIndex: "9999"}).attr("src","default/citymap/D5.png");
            $.get("save.php", {id: 1, action: all}, function(result) {
                $("#results").html(result);
            }); 
        }); 
    }) ( jQuery ); 

4 个答案:

答案 0 :(得分:2)

只是我还是忘了关闭就绪处理函数?

(function($) { 
    $(document).ready( function() { 
        $("div.area_map").click( function () {
        alert('clicked'); 
        $('img.hoverswap', this).css({ 
            position:"absolute",
            left:"0px",
            top:"0px",
            width: "120",
            height: "52",
            zIndex: "9999"}).attr("src","default/citymap/D5.png");
            $.get("save.php", {id: 1, action: all}, function(result) {
                $("#results").html(result);
            }); 
        });
    }); // <<--- missing here.
}) ( jQuery ); 

答案 1 :(得分:0)

你忘了关闭

$("div.area_map").click( function () {

所以添加另一个});

答案 2 :(得分:0)

试试这个:

  $(document).ready( function() {
    $("div.area_map").click( function () {
        alert('clicked');
     $('img.hoverswap', this).css({
        position:"absolute",
        left:"0px",
        top:"0px",
        width: "120",
        height: "52",
        zIndex: "9999"}).attr("src","default/citymap/D5.png");
        $.get("save.php", {id: 1, action: all}, function(result) {
            $("#results").html(result);
        });
    });

    });

答案 3 :(得分:0)

试试这个:)

$(document).ready(function() { 
    $("div.area_map").click( function () {
        alert('clicked'); 
        $('img.hoverswap', this).css({ 
            position  : "absolute",
            left      : "0px",
            top       : "0px",
            width     : "120",
            height    : "52",
            zIndex    : "9999"
        }).attr("src","default/citymap/D5.png");
        $.get("save.php", {id: 1, action: all}, function(result) {
            $("#results").html(result);
        });
    });
});