jq select 全选 / 反选:给全选input添加allChecked类,反选添加inverse,选项添加check。
$(function(){
$('.allChecked').on('click', function(){
$('.che...
蚂蚁
10年前 (2015-06-03)
4030℃
1评论
1喜欢
$('.parameters .detail-menu li').click(function() {
var i = $(this).index();
var h = $('.parameters .detail h6').eq(i).offset().top;
...
蚂蚁
10年前 (2015-06-02)
3268℃
0评论
0喜欢
简单怎么了,你咬我啊
$(window).scroll(function() {
var h_num = $(window).scrollTop();
if (h_num > 750) {
//做一些事
} else {
//做一些事,或返回前面的状态...
蚂蚁
10年前 (2015-06-02)
5479℃
6评论
0喜欢
教你咋玩,随便进一个网页按F12,大家会在浏览器下端看到类似这样的界面。
然后 这里输入下面内容
document.body.contentEditable='true';
修改想改的内容然后
javascript:document.body.contentEdi...
蚂蚁
10年前 (2015-05-30)
4703℃
0评论
3喜欢
虽然简单 做个笔记
$('#step_1_tbody input[type=text]').on('click',function(){
$(this).parent().parent().find('input[type=radio]')[0].checke...
蚂蚁
10年前 (2015-05-29)
4094℃
0评论
0喜欢
js判断设备类型
js 判断微信浏览器
if (/MicroMessenger/.test(window.navigator.userAgent)) {
console.log('handleAliPay 微信客户端');
} else...
蚂蚁
10年前 (2015-05-28)
5352℃
1评论
1喜欢
在网上看了好多资料都没做出来,后来才发现要在服务器环境下才行 ,坑爹货!!!
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="...
蚂蚁
10年前 (2015-05-27)
7370℃
3评论
10喜欢
html
<div class="nav">
<ul>
<li><a href="index.html">Index</a></li>
<li><a href="posts....
蚂蚁
10年前 (2015-05-26)
12480℃
4评论
4喜欢
querySelector 和 querySelectorAll 方法是 W3C Selectors API 规范中定义的。他们的作用是根据 CSS 选择器规范,便捷定位文档中指定元素。
目前几乎主流浏览器均支持了他们。包括 IE8(含) 以上版本、 Firefox、 Chrom...
蚂蚁
10年前 (2015-05-26)
5422℃
0评论
3喜欢
如果你稍微懂一些JS代码,一般都会知道 window.location.href 这个属性。并且用该属性获取页面 URL 地址:
window.location.href = window.location.href;
好吧,我告诉你,这样弱掉了。其实原生 JavaScript ...
蚂蚁
10年前 (2015-05-26)
3468℃
0评论
2喜欢