댓글 입력창에 랜덤글을 미리 넣고 싶은데요
본문
오늘 하루종일 헤매이다가
아래글에서 왕계란님 답변에서 답을 얻고 바로 적용했습니다.
문제는 엔터를 넣고 싶은데 어떻게 해야 할까요?
<script>
window.onload = function() {
var str = ["a<br>a", "b\\nb", "c<br>c", "d<br>d"];
var n = Math.floor(Math.random() * str.length);
document.getElementById("test").value = str[n];
}
</script>
<textarea name="test" id="test"></textarea>
답변을 작성하시기 전에 로그인 해주세요.