摘要:
在html的checkbox里,选中的话会有属性checked="checked"。如果用一个checkbox被选中,alert这个checkbox的属性"checked"的值alert($"#xxx".attr("checked")),会打印出"true",而不是"checked"!如果没被选中,... 阅读全文
2014年9月22日
2014年9月17日
摘要:
$(document).ready(function(){ window.onscroll = function(){ var forum_main = document.getElementById("forum_main"); var thetop =document.documentEleme... 阅读全文
2014年9月15日
摘要:
SELECT count( A.tid ) , A.uidFROM tag_recordlog A, (SELECT id, max( dateline ) FROM tag_recordlogWHERE uid >128AND uid 1405375200AND dateline <14080... 阅读全文
2014年9月4日
摘要:
$(".bInput").bind('keydown',function(event){//回车提交手动标签 if(event.keyCode==13){ $(".bBut").trigger("click"); } return false;})此函数触发 submit回车提交 但是加一个retu... 阅读全文