WEB 教程
实践 示例
HTML 参考手册
CSS 参考手册
PHP 参考手册

如何使用 jQuery 切换内部文本和点击元素

主题:JavaScript / jQuery上一页|下一页

答案:使用jQuery text()方法

您可以将 jQuery click() 方法与 text() 方法结合使用,使用 jQuery 动态替换或切换元素内的文本,例如链接(即锚点 <a>)、<div><button> 元素。 让我们尝试一个例子来看看它是如何工作的:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Toggle Text inside Elements</title>
<style>
    button {
        padding: 5px 10px;
        font-size: 14px;
    }
</style>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
    $(document).ready(function(){
        $("button").click(function(){
            $(this).text($(this).text() == 'Order by Alphabet' ? 'Order by Category' : 'Order by Alphabet');
        });
    });
</script>
</head>
<body>
    <button type="button">Order by Alphabet</button>
<p><strong>Note:</strong> Click on the button to swap the text.</p>
</body>
</html>

FAQ 相关问题解答

以下是与此主题相关的更多常见问题解答:

Advertisements