摘要: <table border="1" cellspacing="10" cellpadding="10" bgcolor="red"> <tr> <th align="left">首列</th> </tr> <tr> <td></td>//列 </tr>//行 </table> 注释: table是表 阅读全文
posted @ 2016-07-07 17:03 ConnieHey 阅读(23199) 评论(0) 推荐(0)
摘要: jQuery对象是通过jQuery包装DOM对象后产生的对象。 DOM对象可以使用js中的方法 jQuery对象无法使用DOM对象中的方法; 举个例子: $("#foo").html();//这个就是jquery的方法 等同于下面 document.getElementById("foo").inn 阅读全文
posted @ 2016-07-07 11:39 ConnieHey 阅读(317) 评论(0) 推荐(0)
摘要: 当在段落上按下鼠标按钮时执行一段 JavaScript: <p onmousedown="mouseDown()">请点击此文本!</p> 定义和用法 onmousedown 属性在鼠标按钮在元素上按下时触发。 提示:相对于 onmousedown 事件的事件次序(限于鼠标左/中键): onmous 阅读全文
posted @ 2016-07-04 17:18 ConnieHey 阅读(918) 评论(0) 推荐(0)