「jQuery入門」textareaの改行コードを
に置換するサンプル
JSコード:
$('#txtarea’).change(function() {
var cftVal = $('txtarea’).val();
$('#userProfile’).html(cftVal.replace(/\r?\n/g, '<br>’));
//some code
});
Coding Changes the World
JSコード:
$('#txtarea’).change(function() {
var cftVal = $('txtarea’).val();
$('#userProfile’).html(cftVal.replace(/\r?\n/g, '<br>’));
//some code
});