ユーザーが「 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;
}
}
});
});