复制代码 代码如下: <br /> body{font-family: "微软雅黑";width: 980px; margin: 0 auto; text-align: center;}<br /> .box{<br /> width: 300px;<br /> height: 300px;<br /> background: green;<br /> border: 1px solid #e6e6e6;<br /> line-height: 200px;<br /> position: absolute;<br /> }<br /> button{<br /> border: none;<br /> background: green; <br /> width: 125px;<br /> height: 50px;<br /> line-height: 50px;<br /> color: #fff;<br /> font-size: 16px;<br /> margin-top: 50px;<br /> font-family: "微软雅黑";<br /> }<br /> 显示text 显示html 显示输入内容 这是要显示粗体的节奏 <br /> $(document).ready(function(){<br /> $("#btn1").click(function(){<br /> alert("Text: " + $("#text").text());<br /> });<br /> $("#btn2").click(function(){<br /> alert("HTML: " + $("#text").html());<br /> });<br /> $("#btn3").click(function(){<br /> alert("Value: " +$("#input").val());<br /> });<br /> });<br /> Tips: 1、点击事件节点的选择 #botton 2、alert 的代码规则 ("Value: " + $("#id").html) 今天的分享就先到这里了,后续我们还将持续更新一些新的jQuery实例。