select()
select()はユーザーがテキストを選択などをした際に発火するイベントです。
このイベントはinput要素やtextarea要素に対してのみ有効です。
$(".target").select(function(){
console.log("select");
});
selectイベントを発火時にイベントデータを引き渡すことが可能です。
$(".target").select("ok",function(e){
console.log(e.data);
});
引数に何も指定しないことで設定しておいたselectイベントを発火させる事も可能です。
$(".target").select(function(){
$(this).css("background","red");
});
$("button").click(function(){
$(".target").select();
});
この場合はボタンをクリックした際も.targetのselectイベントが発火します。
jQuery 1.0.0での追加/変更select()はjQuery 1.0で定義されたメソッドです。
jQuery 1.4.3での追加/変更jQuery 1.4.3よりイベントデータを扱うことが可能になりました。
参考URL
.select() | jQuery API Documentation
登録日 : 2013年06月17日 最終更新日 : 2013年6月17日
同じカテゴリー(Events)のエントリー
- change()
- blur()
- unload()
- unbind()
- submit()
- select()
- scroll()
- mouseleave()
- mouseenter()
- keyup()
- keypress()
- keydown()
- focusout()
- focusin()
- focus()
- die()
- delegate()
- dblclick()
- bind()
- undelegate()
- error()
- off()
- resize()
- mouseup()
- mousemove()
- mousedown()
- mouseout()
- mouseover()
- click()
- on()
- load()
- ready()