Loading...
第一种: $(window).bind("load resize",function(){ document.documentElement.clientWidth >= 600 ? console.log("hello") : console.log("xiaoyu600") }); 第二种: ...
$(function () { $("input[type='checkbox']").click(function () { if ($(this).is(':checked') == true) { //判断当前复选框是否被选中,因为如果复选框没有被选中attr()函数的返回值是undefined,...
jquery实现定时器发送验证码var index = 6; $("#sendSms").text(index + 'S'); /*使按钮不可点,也可加自定义属性进行控制*/ $("#sendSms").attr("disabled",true); ...
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="Content-Type" content="text/html;" /> <title>&l...
jquery绑定回车键document.onkeydown = function (e) { var theEvent = window.event || e; var code = theEvent.keyCode || theEvent.which; if (code == 13) { $('#btns_logi...