-1

私のサイトでは、非表示のコスチューム エリアのボタンをクリックすると、すべてが閉じられます。

このボタンをクリックしたときにそれらを閉じたくありません。しかし、それらは閉鎖されています。

私はそれのために何をすべきか。

<!DOCTYPE html>
<html>
<head>
  <style>
  p { background:red; }
</style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <p>

It is a long established fact that a reader will be distracted. The point of using Lorem Content is here...

  </p>
  <p>
  <span>Mr [Name], [Surname]</span>
  <a href="http://www.mobilyala.com" />
       <img src="http://www.mobilyala.com/home.png" alt="Home" />
   </a>
   Welcome to our website. You can read all about our services. We are working on dekorasyon

   <button>Hidden Custom Area</button>

</p>
<script>
  $("button").click(function () {
    $("p").empty();
  });
</script>

</body>
</html>
4

1 に答える 1

5

<p>このコードは、すべての要素のコンテンツを削除します。他に何を期待していましたか?

<p>ボタンを含むだけが必要な場合は、チオを使用します。

$(this).closest('p').empty();

代わりに、.empty()あなたも望むかもしれません.remove()

于 2012-05-18T11:07:19.497 に答える