<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Insert title here</title>
<script type="text/javascript">
document.getElementById("text").value = "Hello";
</script>
</head>

<body>
<textarea rows="10" cols="80" id="text"></textarea>
</body>
</html>但是这样写压根没有修改textarea的内容,求教高手应该怎么改

解决方案 »

  1.   


    <textarea rows="10" cols="80" id="text"></textarea>
    <script type="text/javascript">
        document.getElementById("text").value = "Hello";
    </script>写在后边,或者<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
            "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
        <title>test</title>
        <script type="text/javascript">
            window.onload = function(){
                document.getElementById("text").value = "Hello";
            }
        </script>
    </head>
    <body>
    <textarea rows="10" cols="80" id="text"></textarea>
    </body>
    </html>等页面的dom结构加载完之后js才能  document.getElementById("text") 获得对象。
      

  2.   

    需要等dom加载完了 再操作<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
            <title>Insert title here</title>    </head>
        
        <body>
            <textarea rows="10" cols="80" id="text"></textarea>
            <script type="text/javascript">
                document.getElementById("text").value = "Hello";
            </script>
        </body>
    </html>