작업노트/HTML & Script

GET방식으로 한글 보내는 방법

데브가이 2007. 9. 4. 02:51
자바스크립트를 이용해야 했기 때문에

var encodedUrl = encodeURIComponent(url);
var encodedName = encodeURIComponent(name);

이런식으로 해서 보냈더니 해결되었다.

(ps. ajax사용...)