好的,这是我到目前为止的小麦。如果有人可以帮助我。单击按钮时,我不得不更改背景的颜色。我还必须使用document.getElementById('yourelementid')来查找textarea的值并更改div中创建的基本文本。但我不知道该怎么做,我一直在网上研究。我觉得我在这里把事情放在哪里感到有点困惑谢谢。
这是我到目前为止所拥有的......
<!DOCTYPE html PUBLIC "-//W3C//DTD Xhtml 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http:www.w3.org/1999/xhtml">
<head>
<title>DOM</title>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1" />
<script language="JavaScript">
<!-- Begin
function newbg(thecolor)
{
document.bgColor=thecolor;
}
// End -->
</script>
<body>
<h3>DOM Assignment Examples</h3>
<div>
<form>
<h4>Change background color to:</h4>
<input type="radio" value="White" onclick="newbg('white');">white<br/>
<input type="radio" value="Blue" onclick="newbg('blue');">Blue<br />
<input type="radio" value="Beige" onclick="newbg('Beige');">Beige<br />
<input type="radio" value="Yellow" onclick="newbg('yellow');">Yellow<br />
</form>
</div>
<br />
<br />
<br />
<h4>add text to this box change the text below:</h4>
<TEXTAREA NAME="" ROWS="10" COLS="40" onBlur="blurHandlerRouting">
You will change this text
</TEXTAREA> <br />
<INPUT TYPE="button" NAME="button" Value="Click" onClick="testResults(this.form)">
</body>
</html>
答案 0 :(得分:7)
可以使用jQuery中的<textarea>
或vanilla JavaScript中的.html()
来操纵.innerHTML
的内容。
您的HTML应包含id=""
属性:
<textarea id="mytextarea">Text to be changed</textarea>
JavaScript:
document.getElementById('mytextarea').innerHTML = "New Text";
答案 1 :(得分:6)
要更改背景和textarea,您可以尝试:
function = testResults(){
document.getElementById("yourTextBoxId").style="background:red;"; //Change the background color to red.
document.getElementById("yourTextAreaId").value="your another text for the textarea"
}