0

我有一个简单的 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测试的示例

4

2 回答 2

5

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

$(document).ready(function(){
于 2012-10-29T15:58:10.370 回答
0

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

于 2012-10-29T15:59:52.027 回答