我的 JavaScript 代码有什么问题?

发布于 2024-12-04 12:19:43 字数 740 浏览 0 评论 0原文

我正在创建一个简单的测试器页面来测试我网站中的一些其他功能。我无法让它运行。我做错了什么?

<p>
    <a href="#" id="addItem">Add item to cart</a>
</p>
<script>
    $('#addItem').click(funtion(){  /* Expected '(' or ',' */
    $.post('http://localhost:1969/AddToCart', 
           'SystemCodeId=WB&SystemKey1=123456&SystemKey2=123ABC&Cost=25.01&TransactionType=1&Description=This is a test',
           function (data) {
            document.location.replace('http://localhost:1969/');
        });
    }); /* Expected expressions */
</script>

Visual Studio 一直认为存在语法错误。我不怀疑,但我不知道问题出在哪里。这些评论是 Visual Studio 报告的错误。

Firebug 也不会识别该脚本(不会显示在脚本选项卡中)。所以我知道某个地方出了问题。

注意:我使用的是 HTML5。

I am creating a simple tester page to test some other functions within my website. I can't get it to run. What am I doing wrong?

<p>
    <a href="#" id="addItem">Add item to cart</a>
</p>
<script>
    $('#addItem').click(funtion(){  /* Expected '(' or ',' */
    $.post('http://localhost:1969/AddToCart', 
           'SystemCodeId=WB&SystemKey1=123456&SystemKey2=123ABC&Cost=25.01&TransactionType=1&Description=This is a test',
           function (data) {
            document.location.replace('http://localhost:1969/');
        });
    }); /* Expected expressions */
</script>

Visual Studio keeps thinking there is a syntax error. I don't doubt it, but I can't figure out where the problem is. The comments are the errors that visual studio is reporting.

Firebug won't recognize the script either (doesn't show in the scripts tab). So I know there is a problem some where.

Note: I am using HTML5.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愿得七秒忆 2024-12-11 12:19:44

函数 ->第 5 行中的 function。还要转到站点的根目录,我将使用 window.location = window.location.host

funtion -> function in line 5. also to go to the root of your site i would use window.location = window.location.host

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文