摘要: 1.HTML5 为什么只需要写 <!DOCTYPE HTML>?答案解析: HTML5不基于SGML,因此不需要对DTD进行引用,但是需要DOCTYPE来规范浏览器的行为(让浏览器按照他们应该的方式来运行)而HTML4.01基于SGML,所以需要对DTD进行引用,才能告知浏览器文档所使用的文档类型。 阅读全文
posted @ 2017-10-09 14:15 地表热浪 阅读(225) 评论(0) 推荐(0) 编辑
摘要: $(".datepicker").datepicker( { showOn: "button", buttonImage: "../css/images/calendar.gif", buttonImageOnly: true, buttonText: "Select date" }); 阅读全文
posted @ 2017-10-09 10:52 地表热浪 阅读(345) 评论(0) 推荐(0) 编辑
摘要: <div id="dialog" title="提示"> <p>确定收回此次委托吗?</p></div> ///////////////////////////////////////////////////////////////////////////////////////////////// 阅读全文
posted @ 2017-10-09 10:45 地表热浪 阅读(107) 评论(0) 推荐(0) 编辑
摘要: ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// <dl 阅读全文
posted @ 2017-10-09 10:29 地表热浪 阅读(765) 评论(0) 推荐(0) 编辑
摘要: <div id="calenderDiv" class="fl"> $(document).ready( function(){ $("#calenderDiv").datepicker(); }); .ui-datepicker { width: 23em;}.ui-widget-header { 阅读全文
posted @ 2017-10-09 10:23 地表热浪 阅读(143) 评论(0) 推荐(0) 编辑
摘要: $("th").on('click','#checkboxHead',function(){ var temp= $("#checkboxHead").is(':checked'); // alert(temp); if(temp==true){ //alert("选中"); $("td input 阅读全文
posted @ 2017-10-09 10:17 地表热浪 阅读(238) 评论(0) 推荐(0) 编辑
摘要: $(window).on("load",function(){ $(".content").mCustomScrollbar();}); 阅读全文
posted @ 2017-10-09 10:16 地表热浪 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 标题固定: position: absolute, height:20px, width:100% 内容: position: absolute, width:100%, top:30px, bottom:0 阅读全文
posted @ 2017-10-09 09:50 地表热浪 阅读(370) 评论(0) 推荐(0) 编辑