摘要:
源地址:http://www.catswhocode.com/blog/10-handy-and-reusable-jquery-code-snippetsSmooth scrolling to top of pageLet’s start this list by a very popular and useful snippet: Those 4 lines will allow your visitors to smooth scrool to the top of the page simply by clicking a a link (with#topid) located at 阅读全文
摘要:
// First create the eventvar myEvent = new CustomEvent("userLogin", { detail: { username: "davidwalsh" }});//Listener event myElement.addEventListener("userLogin", function(e) { console.info("Event is: ", e); console.info("Custom data is: ", e.detail 阅读全文
摘要:
Mongodb 操作Start MongoDBThe MongoDB instance stores its data files in the/var/lib/mongoand its log files in/var/log/mongo, and run using themongoduser account. If you change the user that runs the MongoDB process, youmustmodify the access control rights to the/var/lib/mongoand/var/log/mongodirectorie 阅读全文