未捕获的SyntaxError:意外的令牌;

时间:2012-03-30 07:18:12

标签: javascript jquery syntax-error

我的Jquery代码收到以下错误:

Uncaught SyntaxError: Unexpected token ;

这是我的jquery代码:

<script type="text/javascript">
 $(function() {
         $('#CustomButton').click(function() {
        $('#CustomPickedTable tbody').append(
            $('<tr/>', {
                click: function() {
                    $(this).remove()
                },
                html: $("<td />", {
                    html: $("#CustomQuestionText").val(),
                    'data-attr-id': 5

                })
            })
        );
        return false;
    });​
});      // <--- This line recieves the error
</script>

这是我对这个jquery代码的标记:

<table id="CustomPickedTable" class="box-style2">
    <thead>
        <tr>
            <th>Valda frågor</th>
        </tr>
    </thead>
    <tbody>
    </tbody>
</table>
<br />
<p>Lägg till egen fråga</p>
<div class="editor-field">
    @Html.TextAreaFor(model => model.CustomQuestionText, new { @class = "selectstyle", @id = "CustomQuestionText" })
    @Html.ValidationMessageFor(model => model.CustomQuestionText)
</div>
<div>
    <p><input type="button" id="CustomButton"  value="Lägg till" /></p>
</div>
</div>

可能导致此错误的原因如何解决?

提前致谢

3 个答案:

答案 0 :(得分:0)

分号后面的第二行最后一行有一个特殊的字符我只是删除它现在再试一次这段代码

$(function() {
             $('#CustomButton').click(function() {
            $('#CustomPickedTable tbody').append(
                $('<tr/>', {
                    click: function() {
                        $(this).remove()
                    },
                    html: $("<td />", {
                        html: $("#CustomQuestionText").val(),
                        'data-attr-id': 5

                    })
                })
            );
            return false;
        });​
    });      // <--- This line recieves the error

答案 1 :(得分:0)

当我将代码复制到记事本++时,我得到:(注意?)

 $(function() {
         $('#CustomButton').click(function() {
        $('#CustomPickedTable tbody').append(
            $('<tr/>', {
                click: function() {
                    $(this).remove()
                },
                html: $("<td />", {
                    html: $("#CustomQuestionText").val(),
                    'data-attr-id': 5

                })
            })
        );
        return false;
    });?
});      // <--- This line recieves the error

修正了它并将function()更改为document.ready以便清晰:

$(document).ready(function() {
    $('#CustomButton').click(function() {
        $('#CustomPickedTable tbody').append(
            $('<tr/>', {
                click: function() {
                    $(this).remove()
                },
                html: $("<td />", {
                    html: $("#CustomQuestionText").val(),
                    'data-attr-id': 5

                })
            })
        );
        return false;
    });
}); 

答案 2 :(得分:0)

在倒数第二行包含一些非法字符。删除它,它工作。

enter image description here