Home  >  Article  >  Web Front-end  >  Use jquery to manipulate the text content of the input box

Use jquery to manipulate the text content of the input box

php中世界最好的语言
php中世界最好的语言Original
2018-03-15 10:01:131648browse

This time I will bring you how to use jquery to operate the text content of the input box. What are the precautions for using jquery to operate the text content of the input box. The following is a practical case. Get up and take a look.

The example code is as follows:

<p>
  <a class="btn btn-success show" title="Popover title"
     data-container="body" data-toggle="popover" data-placement="bottom"
     data-content="底部的 Popover 中的一些内容"> aaaa </a>
</p>
<script>
  $(function () {
    initPopover();
  })
  function initPopover() {
    $(".show").popover({
      container: "body",
      trigger: " manual"  //手动触发
    }).on('show.bs.popover', function () {
      $(this).addClass("popover_open");
    }).on('hide.bs.popover', function () {
      $(this).removeClass("popover_open");
    });
    $(".show").click(function () {
      if ($(this).hasClass("popover_open")) {
        $(this).popover("hide")
      } else {
        $(".popover_open").popover("hide");
        $(this).popover("show");
      }
      var e = arguments.callee.caller.arguments[0] || event;
      e.stopPropagation();
    });
    $(document).click(function () {
      $(".show").popover("hide");
    });
  }
</script>

Note:

1. Not applicable to button, a, img, etc. can be used

2. show.bs.popover: This event is triggered immediately when the show instance method is called.

shown.bs.popover: This event is triggered when the popup box pops up completely (will wait for the CSS Transition Effect to complete).

hide.bs.popover: This event is triggered immediately when the hide instance method is called.

hidden.bs.popover: This event is triggered when the tooltip is completely hidden (will wait for the CSS transition effect to complete).

3. Introduce jquery and bootstrap header files

4. Cancel bubbling

I believe you have mastered the method after reading the case in this article, more Please pay attention to other related articles on the php Chinese website!

Recommended reading:

Realize the linkage effect between the input box and the drop-down box

How to achieve the dynamic acquisition of Jquery drop-down box data

Ajax and Jquery combine with the database to realize the secondary linkage of the drop-down box

The above is the detailed content of Use jquery to manipulate the text content of the input box. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn