寻找一个用两个p标签替换p标签的jQuery

时间:2016-08-19 10:58:15

标签: jquery

如果我想用必需更改当前,我必须编写什么jQuery。

当前

jQuery Format Big

(这是一行内容)

必需 (下面一个是不同字体大小的两行内容)

jQuery Format Big

jQuery Format Small

1 个答案:

答案 0 :(得分:0)

您可以在jquery中使用html()方法来设置div的内容。

在此处找到工作示例: https://jsfiddle.net/t11yuvq3/2/

找到以下代码:

<html>
    <head>
    </head>
    <script src="http://code.jquery.com/jquery-latest.js"></script>
    <script>
        $('#btn_click').on('click', function () {
            $("#container").html("<p id='required1' style='font-size: 125%;'>jQuery Format Big</p><p id='required2' style='font-size: 75%;'>jQuery Format Small</p>");
        });
    </script>
    <body>
        <div id="container">
            <p id="current">jQuery Format Normal</p>
        </div>
        <button type="button" id="btn_click">Replace p</button>
    </body>
</html>