これらのイベントの両方を一緒に開始できるかどうか疑問に思っています:
$("input[type=checkbox]").click(function(){
if($(this).is(":checked"))
{
//Value of checkbox
alert(this.value);
}
});
と
$("input[type= 'text']").keyup(function(){
alert(this.value);
});
.bindを調べましたが、選択した1つの要素(つまり$(p).bind("mouseout mouseenter).doSomething())
、
私が遭遇している状況は、これらのいずれかが発生したときにいつでも起動する必要がある関数を持っているということです。