我的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>
可能导致此错误的原因如何解决?
提前致谢
答案 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)
在倒数第二行包含一些非法字符。删除它,它工作。