jQuery 选择器
jQuery 事件
jQuery 隐藏和显示
jQuery 淡入淡出
jQuery 滑动
jQuery 动画
jQuery 停止
jQuery 获取
jQuery 设置
jQuery 添加
jQuery 移除
jQuery CSS 类
jQuery CSS
jQuery 尺寸
jQuery 遍历

Menu
×
×
正确

练习:

使用 on() 方法将点击事件处理程序附加到所有 <p> 元素上。

$("p").on("click", function(){ $(this).hide(); });

不正确

点击 此处 重试

正确

下一题 ❯
$("").on(, function(){
  $(this).hide();
});







×

重置分数?