码迷,mamicode.com
首页 > Web开发 > 详细

Jquery小知识

时间:2015-07-16 00:39:45      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

1.

$(document).ready(function(){ 
  $(‘form‘).find("input[type=textarea], input[type=password], textarea").each(function(ev)
  {
      if(!$(this).val()) { 
     $(this).attr("placeholder", "Type your answer here");
  }
  });
});
//获取属性
How can I select an element by name with jQuery?

you can use the attribute selector

$(‘td[name=tcol1]‘) // matches exactly ‘tcol1‘

$(‘td[name^=tcol]‘) // matches those that begin with ‘tcol‘
//通过name 选择
How can I know which radio button is selected via jQuery?

To get the value of the selected radioName item of a form called ‘myForm‘:

$(‘input[name=radioName]:checked‘, ‘#myForm‘).val()//注意这条棒哒哒的选择
//判断哪个radio 被选中
 

使用trigger()方法模拟事件

$("#btn").trigger("click");
//模拟点击http://blog.csdn.net/lijunling2008live/article/details/7457396

使用标准效果列队,举个例子,我们可以在 <div id="foo"> 的 .slideUp() 和 .fadeIn() 动画之间设置800毫秒的延时:


1
$(‘#foo‘).slideUp(300).delay(800).fadeIn(400);

//设置动画延迟

setTimeout(
  function() 
  {
    //do something special
  }, 5000);
 //实打实的延迟5秒

Jquery小知识

标签:

原文地址:http://www.cnblogs.com/qbuer/p/4649814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!