<textarea style="width: 98%" rows=10 class=ed name=textbox1>안녕하세요, 테스트입니다.</textarea>
var textbox1 = document.getElementsByName("textbox1");
var result1 = textbox1.test("안녕하세요");
if (result1 == true) {
alert("안녕하세요 라는 값이 있습니다.");
return false;
}
f.action = "./next.php";
여기서 textbox1에 "안녕하세요" 라는 값이 있으면 뒤로 못넘어가게 하고싶은데
계속 페이지가 새로고침되네요 ㅠㅠ 어떻게 해야할까요?