• javascript获取页面文档内容


    <html>
    <head>
    <title>JavaScript基础</title>
    </head>
    <body>
    <p>一.用document对象获取页面标题</p>
    <hr />
    <p>二.用ducument访问以下两个表单</p>
    <p>第一个,文本框的值</p>
    <form name="textform">
      <input name="textname" type="text" value="请输入文本" />
    </form>
    <p>第二个,按钮的值 </p>
    <form name="submitform">
      <input type="submit" name="submitname" value="第一个表单内的提交">
    </form>
    <hr/>
    <p>下面是获取到的值:</p>
    <table border="1" cellspacing="4" cellpadding="2">
      <tr>
      <td>获取到的本页标题是:</td>
        <td><b><script>document.write(document.forms.length)</script></b></td>
      </tr>
      <tr>
      <td>本页包含的表单:</td>
      <td><b><script>document.write(document.forms.length)</script></b></td>
      <tr>
    
      <tr>
      <td>获取到的文本框的值是:</td>
      <td><b><script>document.write(window.document.textform.textname.value)</script></b></td>
      <tr>
      <td>获取到按钮的值是</td>
        <td><b><script>document.write(document.submitform.submitname.value)</script></b></td>
      </tr>
    </table>
    </body>
    </html>

    还算是比较全面的一段代码,非常基础

  • 相关阅读:
    # GIT团队实战博客
    # ML学习小笔记—Where does the error come from?
    # Alpha冲刺3
    # Alpha冲刺2
    # Alpha冲刺1
    # ML学习小笔记—Linear Regression
    # 需求分析报告
    # 团队UML设计
    # 团队选题报告
    Alpha 冲刺 (4/10)
  • 原文地址:https://www.cnblogs.com/jijiji/p/4951709.html
Copyright © 2020-2023  润新知