"Hello World!"などのテキストエリアにユーザーが入力してボタンをクリックすると、テーブル、TextArea、およびボタンが表示されます。 *) "値に文字を追加する
$(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;
}
}
});
});
+1、仮定(*)がユーザーに表示されるようにされていない参照 – mplungjan