我有一个 Table、TextArea 和 Button,当用户在 Textarea 中键入诸如“Hello World!”然后单击按钮时,我希望文本变为“Hello World!(*)”。
我如何使用我正在使用的这个 Jquery 代码来做到这一点:
$(document).ready(function () {
$('#Button').click(function () {
if ($("#MyTextArea").val().indexOf('|') > -1) {
alert("The box has special characters. \nThese are not allowed.\n");
} else {
if ($.trim($("#MyTextArea").val()).length > 0) {
$('#MyTable tbody').append(
$('<tr/>', {
click: function () {
$(this).remove()
},
html: $("<td />", {
html: $("#MyTextArea").val(),
'data-sharp-id': 8
})
}));
return false;
}
}
});
});