답변:
대신 이것을 시도하십시오.
if($.trim($('#group_field').val()) != ''){
더 많은 정보:
val()
jQuery 객체를 반환하지 않으므로 체인은 옵션에서 제외됩니다. trim()
문자열 에서 메서드를 호출 했지만 IE는 String.trim
.
또 다른 옵션은 String
누락 된 경우 직접 메서드를 정의하는 것입니다 .
if(typeof String.prototype.trim !== 'function') {
String.prototype.trim = function() {
//Your implementation here. Might be worth looking at perf comparison at
//http://blog.stevenlevithan.com/archives/faster-trim-javascript
//
//The most common one is perhaps this:
return this.replace(/^\s+|\s+$/g, '');
}
}
그런 다음 trim
브라우저에 관계없이 작동합니다.
var result = " trim me ".trim();