728x90
반응형
JQuery textarea값 받기
익스에선 되는데 파폭에서 안되는 경우
textarea의 값을
$("#memo").text();로 받을 경우
익스플로러에서는 작동하나 크롬, 파이어폭스, 사파리에서 작동하지 않는 경우.
$("#memo").val();로 받아야 정상적으로 작동함.
textarea의 값은 text();가 아닌 val();로 받을 것.
How to send textarea value in chrome or safari.
if cannot send textarea value with .text();
using .val(); instead of .text();
textarea have to be use with .val();
when you get a value.
반응형
'Solution' 카테고리의 다른 글
[구글 맵] Google Map 사용 불가 (9) | 2016.12.08 |
---|---|
[HTML/JavaScript] Hidden value reset (0) | 2016.11.15 |
[MSSQL] 서버 연결하기/addlinkedserver (0) | 2016.11.14 |
[SQL] unclosed quotation mark after the character string '.' Error (0) | 2016.11.02 |
[JavaScript] 파이어폭스에서 history.back() (0) | 2016.10.28 |
댓글