$(document).ready(function () { var otable = $('#tbl-resources').dataTable( { bJQueryUI: false, bFilter: true, bPaginate: true, bSort: false, bInfo: true, "oLanguage": { "sSearch": "Click on column to sort / Search all columns for…
SharePoint 2013中新增了很多社交功能,比如用户可以like/unlike 任何一个 list item/page/document,这是一个非常不错的功能. 但有时觉得like/unlike按钮不是很好看,希望用自己的按钮,就需要用JavaScript代码来 Like 和Unlike list item/page/document. 或者在非本级站点客户化显示blog列表等,也需要用JavaScript代码来 Like 和Unlike list item/page/document…
Objects have the ability to use data and methods that other objects contain, as long as it lives on the [prototype] chain. In this lesson we’ll test this out by adding properties and working with this linkage of properties. const obj = {firstName: 'T…
1.  You will need a Long character field to hold the HTML string. You can use the delivered field HTMLAREA if there is no need to create a custom field. 2.  Create a new page. 3.  Place an HTML Area on the page. 4.  Assign a record and field to the H…
.NET技术交流群:337901356 ,欢迎您的加入! 对 于一个用户体验好的网站来说,无刷新技术是很重要的,无刷新,顾名思义,就是局部刷新数据,有用过Asp.net Web Form技术开发网页的人,可能对服务器端(具有runat="server"属性)的控件的回发(PostBack)特性有一定的了解.我们知道,只要 一点击页面中的Asp.net按钮(可能是LinkButton,也可能是Button,还有可能是ImageButton等)都会引起整个页面的刷新, 这样的体验是非常不好…
URL HTTP Redirection URL http redirection is an automatic URL change operation from one URL to another URL. URL redirect Server side redirect Client side redirect HTTP status codes HTTP 301 redirect Redirect options PHP redirect Apache .htaccess redi…
Fancytree是一个非常棒的Javascript控件,功能强大,文档健全.在做Javascript Tree控件选型时,主要基于以下几点选择了Fancytree 在Javascript Tree控件中,Fancytree的排名非常靠前,说明这个控件的用户使用量多.口碑好,当出现问题时在StackOverflow中容易找到答案 支持checkbox选择框 支持Tree Table checkbox选择框有三种状态,并可以disable掉checkbox选择框 丰富的示例展示和代码展示.详尽的介…
分页: limit 偏移量,长度; limit 0,7; 第一页 limit 7,7; 第二页 limit 14,7; 第三页 每页信息条数:7 信息总条数:select count(*) from table 信息总页数:ceil向上取整(总条数/每页条数) 分页类具体使用 <?php class Pagination { private $total; //数据表中总记录数 private $listRows; //每页显示行数 private $limit; //mysql 数据库的lim…
http://unixpapa.com/js/mouse.html Javascript Madness: Mouse Events Jan WolterAug 12, 2011 Note: I have stopped updating this page. At this point nearly all popular browsers are have achieved a good level of compatibility on most of these features, an…
Coursera课程<面向 Web 开发者的 HTML.CSS 与 Javascript> Johns Hopkins University Yaakov Chaikin Week1 Introduction to HTML5 对于网页来说,HTML定义的是网页的骨架(structure),CSS定义的是网页的风格(style),JavaScript定义的是网页的动作(Behavior). 使用http://validator.w3.org可以来验证你写的HTML是否符合标准. HTML标签的…