html 简单的javascript测试页面

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 简单的javascript测试页面相关的知识,希望对你有一定的参考价值。

 <!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>runme</title>
  </head>
  <body>
    <h1 id="changeme">If you see this then JavaScript did not run.</h1>
    
    <script>
      document.querySelector('#changeme').innerHTML = "If you see this, then JavaScript ran.";
    </script>
  </body>
</html>
 <!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>runme</title>
  </head>
  <body>
    <h1 id="changeme">If you see this then jQuery did not run.</h1>
    
    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
    <script>
      //document.querySelector('#changeme').innerHTML = "If you see this, then JavaScript ran.");
      $('#changeme').html("If you see this, then jQuery ran.");
    </script>
  </body>
</html>

以上是关于html 简单的javascript测试页面的主要内容,如果未能解决你的问题,请参考以下文章

Android 在 WebView 中调用 JavaScript 函数

JavaScript 实现页面元素(ul-li)的简单排序

javascript HTML DOM 简单介绍

html-javascript前端页面刷新重载的方法汇总

html-javascript前端页面刷新重载的方法汇总

我应该为一个简单的 HTML5 + jQuery 应用程序使用啥 JavaScript UI 测试框架?