本帖最后由 kami1217 于 2015-2-27 12:02 编辑
试试embed一个youtube视频可以么
- <iframe width="560" height="315" src="https://www.youtube.com/embed/U3tuHG3IUJs" frameborder="0" allowfullscreen></iframe>
复制代码
试试Jquery行不行,不行的话改成百度的library-http://libs.baidu.com/jquery/1.8.2/jquery.min.js
- <!DOCTYPE html>
- <html>
- <head>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
- <script>
- $(document).ready(function(){
- $("button").click(function(){
- $("p").text("Hello Kami1217!");
- });
- });
- </script>
- </head>
- <body>
- <h2>Hello World</h2>
- <p>Hello moeacg</p>
- <button>Click me</button>
- </body>
- </html>
复制代码
js好像也不行,5级的试试。
- <!DOCTYPE html>
- <html>
- <body>
- <h1>JavaScript Test</h1>
- <button type="button"
- onclick="document.getElementById('demo').innerHTML = Date()">
- Click me to display Date and Time.</button>
- <p id="demo"></p>
- </body>
- </html>
复制代码 |