W3Schoo提供了一个在线实例测试工具,通过这个在线编辑器,我们可以很轻松的对代码(html,js等等)进行在线实验。http://www.w3school.com.cn/tiy/t.asp?f=html_basic
对于jQuery我们也可以利用W3Schoo这个在线工具进行试验,改造代码如下。
很简单就是引了一下jQuery的在线类库而已。这为以后实验jQuery提供了方便。
<html>
<head>
<title>jQuery 在线实验室</title>
<script type="text/javas
cript" src="http://jqueryjs.googlecode.com/files/jquery-1.2.6.js"></script>
</head>
<body>
<from>
</form>
<script type="text/javascript">
/* <![CDATA[ */
jQuery(document).ready(function($){
alert('jQuery 在线实验室');
});
/* ]]> */
</script>
</body>
</html>
</head>
<body>
<from>
</form>
<script type="text/javascript">
/* <![CDATA[ */
jQuery(document).ready(function($){
alert('jQuery 在线实验室');
});
/* ]]> */
</script>
</body>
</html>