Jquery脚本未按预期执行

时间:2012-10-29 15:56:29

标签: jquery

我有一个简单的jquery ajax脚本,它将值发送到Web服务进行处理但由于某种原因,jquery根本不运行。

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
<script type="text/javascript" src="jquery-1.8.2.js"></script>
<script type="text/javascript" src="update-cart.js"></script>
</head>
<body>
<div id='colors'>
<a href="3333">Add Color</a>
</div>
</body>
</html>

这是jQuery

// to use surround anchor tags with div (id=colors). Set color or scheme id as href value. On click the item is posted to the web service.
// To do improve response handling from webservice.

$(document)ready(function(){
    $("#colors a").live("click", function() {
        alert("We get here");
        var item = $(this).attr( 'href' );
        var jqxhr = $.post("webservice.php", { action: "add", color: item }, function() {
            alert("success");
        })
        .error(function() { alert("error"); })
        .complete(function() { alert("complete"); });
    });
});

以下是我使用http://www.2100computerlane.net/workingproject/index.html

进行测试的示例

2 个答案:

答案 0 :(得分:5)

$(document)ready(function(){缺少一个点来表示函数调用:

$(document).ready(function(){

答案 1 :(得分:0)

当我点击链接时,我收到了javascript错误“Uncaught SyntaxError:Unexpected identifier”。