问题出在哪里:我在函数体
之后出现错误:缺失}(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 );
答案 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);
});
});
});