如何使用jQuery更改字体系列和字体大小?

要使用jQuery更改字体系列和字体大小,请使用jQuerycss()方法。使用css属性font-familyfont-size。您可以尝试运行以下代码,以了解如何使用jQuery更改字体系列和字体大小-

示例

<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
   $("p").on({
     mouseenter: function() {
        $(this).css({"font-family": "Arial, Helvetica, sans-serif", "font-size": "200%"});
     }
   });    
});
</script>
</head>
<body>
<p>Move the mouse pointer on the text to change the font family and size.</p>
</body>
</html>