我正在W3Schools上做jquery教程。我出于好奇和学习,这就是全部。没有商业应用程序。
我想单击一个HTML元素并仅使用一个函数隐藏它。
我点击(h1,h2,p),但似乎我需要传递标签本身的功能,以便在使用$(this)时隐藏它。
我已经尝试了
$(*).click(function(){
但这隐藏了一切。我的代码是......
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$([the HTML object I'm clicking on now]).click(function(){
$(this).hide();
});
});
</script>
</head>
<body>
如果你点击我,我就会消失。
也点击我!