form.serialize() 할때 trim() 공백제거 사용

728x90
반응형

이게 제일 간편하다.

serialize() 함수 사용하기 전에 전체적으로 trim 없애주기

$('input, textarea').each(function(){
    $(this).val(jQuery.trim($(this).val()));
});

 

 


출처

https://stackoverflow.com/questions/218794/is-there-a-way-to-use-jquerys-serialize-form-fields-and-trim-the-value-in-the-f

 

Is there a way to use jQuery's serialize form fields and trim the value in the fields?

I have a form that uses jQuery to submit an ajax post and it serializes the form that is sent up. The code looks like this: var form = $("form"); var action = form.attr("action"); var serializedFo...

stackoverflow.com

 

728x90
반응형

'Programming > javascript' 카테고리의 다른 글

javascript ?. Optional chaining  (0) 2023.12.29
[jQuery] $.extend란?  (0) 2022.01.28
자바스크립트에서 엑셀 함수 사용하기 fomula.js  (0) 2021.10.12