橱窗的光
Follow

After following, you can keep track of his dynamic information in a timely manner

Course notes
  • Courses in the relevant section:jQuery insert after and before

    <input id="bt1" type="button" value="after"> <input id="bt2" type="button" value="before"><br> <div>php 中文网</div> <script> $("#bt1").click(function(){ $('div').after('欢迎来到php中文网<br>'); }) $("#bt2").click(function(){ $('div').before('php.cn</br>'); }) </script>

    2016-11-240个赞

  • Courses in the relevant section:JavaScript debugging

    调试很难,但幸运的是,很多浏览器都内置了调试工具。 内置的调试工具可以开始或关闭,严重的错误信息会发送给用户。 有了调试工具,我们就可以设置断点 (代码停止执行的位置), 且可以在代码执行时检测变量。

    2016-11-230个赞