Home  >  Article  >  Web Front-end  >  How to use jQuery to switch fonts by clicking on title text

How to use jQuery to switch fonts by clicking on title text

php中世界最好的语言
php中世界最好的语言Original
2018-06-02 10:02:511317browse

This time I will show you how to use jQuery to switch the font by clicking on the title text, and what are the precautions for using jQuery to switch the font by clicking on the title text. The following is a practical case. Let’s take a look.

This mainly switches the font by determining whether the sub-element of the clicked element contains a b element. The wrapInner function is to add the b tag inside the $author element.

Switching back to the normal font is achieved by converting the content into plain text and then replacing the element content.

The core code is as follows:

$('#f-author').css('cursor','pointer');
$('#f-author').click(function(event){
  var $author = $(this);
  if(!$author.children().is('b')){//子元素没有b
    $author.wrapInner('<b></b>');//包含在$author里面
  }
  else{
    var text = $author.text(); //纯文本
    $author.text(text);
  }
});

The complete code is as follows:





www.jb51.net jQuery点击标题切换字体



这里显示测试标题文字

<script> $('#f-author').css('cursor','pointer'); $('#f-author').click(function(event){   var $author = $(this);   if(!$author.children().is('b')){//子元素没有b     $author.wrapInner('&lt;b&gt;&lt;/b&gt;');//包含在$author里面   }   else{     var text = $author.text(); //纯文本     $author.text(text);   } }); </script>

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website !

Recommended reading:

Node.js console output log file example analysis

How to use Vue to achieve drag and drop effect

The above is the detailed content of How to use jQuery to switch fonts by clicking on title text. 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