未捕获的SyntaxError:意外的标记(

尝试在页面test.html中使用以下代码:

<script language = "javascript">
function test()
{
    if (typeof a != "undefined")
    {
        document.body.innerHTML = "";
        document.write(a);
    }
    else
    {
        document.body.innerHTML = "";
        document.write("a is undefined");
    }
    var a = "a is defined";
    document.write("<br><br>");
    document.write("<a href='javascript:void(0)' onclick='function(){ test(a); }'>test</a>");
}
window.onload = function(){ test(); }
</script>

导致错误“Uncaught SyntaxError:Unexpected token(”。如何获得链接以清除页面并显示相应的变量?


function(){ test(a); } function(){ test(a); }您的onclick内部是错误的原因。

您需要使用(function(){ test(a); })来获取函数表达式而不是函数语句。

但是,由于a不是全局的,并且HTML on*参数中的JavaScript不会创建闭包,所以代码仍然不起作用。


以下是使用jQuery的正确/实用示例:

function test(a) {
    if(a !== undefined) {
        $('body').html(a);
    }
    else {
        $('body').html('a is undefined');
    }
    var a = 'a is defined';
    $('body').append('<br /><br />');
    $('<a href="#">test</a>').click(function(e) {
        e.preventDefault();
        test(a);
    }).appendTo('body');
}

$(document).ready(function() {
    test();
});
链接地址: http://www.djcxy.com/p/45997.html

上一篇: Uncaught SyntaxError: Unexpected token (

下一篇: json.parse unexpected token error