-1
특정 단어를 텍스트 영역의 다른 단어로 바꾸려면 자바 스크립트 기능을 작성하는 데 도움이 필요합니다.자바 스크립트 : 텍스트 영역의 특정 키워드 공백 교체
내가 입력 텍스트에 배치 된 단어 (들) 사이에 빈 공간을 찾아 텍스트 영역에서 대체 할: 어떤 도움이 많이
밥을 이해할 수있을 것이다
<html>
<head>
<title>Replace Specific words in textarea</title>
</head>
<body>
<Form name="frm" method="post" id="frm">
<TextArea name="txtArea1" cols="85" rows="10" ID="Textarea1">
While it was clear that forwarding the material was naughty (and the "culprits" had their wrists smacked), there.
This is one of the#main#ways of using link events. If you have not seen rollover images before, they are images
</TextArea><br>
Input keywords: <Input type="text" name="findwords" value="the main ways" id="text1">
<Input type="submit" name="btnSubmit" value="Submit" id="submit">
</form>
</body>
</html>
: 예를 들어
원하는대로 정확하게 작성하십시오. 대체 후 결과는 무엇입니까? – iArcadia
텍스트 영역에있는 입력 키워드의 공백을 "#"으로 대체하십시오. 예를 들어 다음과 같습니다 : 입력 텍스트 : "주요 방법"
–
텍스트 영역 내에있는 키워드의 인스턴스를 고려하면 ... –