JQuery

[JQuery] 특정문자 제거/치환

chsr 2020. 7. 10. 11:39
728x90
반응형
<script type="text/javascript">
	$(document).ready(function(){
		var tmpValue = "10,000";
		tmpValue = tmpValue.replace(/[,]/g,'');
		console.log(tmpValue);	// 10000
	});
</script>

 

728x90
반응형