发布时间:2013-12-29 10:10:05
//ajax/*$(function(){$('input').click(function(){ $("#box").load('test.html');//当点击按钮时,将test.html的内容加载到id为box的div中});});$(function(){ $('input').click(function(){ $("#box").load('test.html .url');//.........【阅读全文】
发布时间:2013-12-29 10:08:27
//动画/*<div class="test">1</div><div class="test">2</div><div class="test">3</div><div class="test">4</div><input type="button" value="显示" class="show" /><input type="button" value="隐藏" class="hide"/><div id="box"> </div>#box{ width:100px; &.........【阅读全文】
发布时间:2013-12-29 10:07:20
//事件对象/*$(function(){ $('input').click(function(e){ alert(e); })});$(function(){ $('input').click(function(e){ //alert(e.type);//type属性 .........【阅读全文】
发布时间:2013-12-29 10:05:58
/表单选择器$(function(){ //alert($('input').eq(1).val()); //alert($('input[name=pass]').val()); //alert($(':input[name=city]').size()); //alert($(':text').size());});//基础事件/*$(function(){ $('inp.........【阅读全文】
发布时间:2013-12-29 10:04:46
/*DOM和CSS$(function(){ //alert($("#box").html());//.html()获取html内容“<strong>www</strong>” //alert($("#box").text());//获取text内容 “www” //$('#box').html('<em>cccccccccccc</em>');//替换html //$('#box').text.........【阅读全文】