「jQuery」trim()で文字列の前後の空白を削除するサンプル
構文
$.trim(str)
jQuery.trim()の引数には文字列を指定します。
サンプルコード
var cft = ' this is a test ';
// 空白削除
var result = $.trim(cft);
// 出力
console.log(result);
結果
this is a test
Coding Changes the World
構文
$.trim(str)
jQuery.trim()の引数には文字列を指定します。
サンプルコード
var cft = ' this is a test ';
// 空白削除
var result = $.trim(cft);
// 出力
console.log(result);
結果
this is a test