update jQueryFreq

This commit is contained in:
蒋国宝 2016-03-10 23:47:27 +08:00
parent a0bc8aba8d
commit 1e19478218
2 changed files with 4 additions and 5 deletions

View File

@ -62,4 +62,4 @@ This repo includes lots of configure scripts, code snippet, which can be used in
the chrome switchysharp plugin chinanet and gfwlist config files.
## update
2016-02-04
2016-03-10

View File

@ -1,13 +1,11 @@
/**
* jQuery常用的一些操作
*/
// 从当前myId找最近为table的parent
$('#myId').closest('table');
// 是否选中 jQuery 1.6
$('#checkMeOut').prop('checked'); // true
$('#checkBox').prop('checked'); // true
$('#checkBox').prop('checked', true); // 设置为true
// 将内容插入到一个容器里,放到容器的元素最后面
@ -89,7 +87,8 @@ $(document).ready(function(){
console.log('document ready!.');
});
// 移动到锚点 http://stackoverflow.com/questions/1586341/how-can-i-scroll-to-a-specific-location-on-the-page-using-jquery
// 通过动画移动到锚点
// http://stackoverflow.com/questions/1586341/how-can-i-scroll-to-a-specific-location-on-the-page-using-jquery
var divPosition = $('#divId').offset();
$('html, body').animate({scrollTop: divPosition.top}, "slow");