jquery 选中某一行
html:
<div class="chatBox-list" ref="chatBoxlist">
<div class="chat-list-people">
<div><img src="img/icon01.png" alt="头像"/></div>
<div class="chat-name">
<p>小明</p>
</div>
<div class="message-num">10</div>
<button onclick="ceshi()">ceshi</button>
<div id="bian" ></div>
</div>
</div>
js:
//进聊天页面
$(".chat-list-people").each(function () {
$(this).click(function () {
var n = $(this).index();
console.log("你选中的好友号:"+n)
//让input框选中
$(this).find("input").attr("checked",true);
$(".chatBox-head-one").toggle();
$(".chatBox-head-two").toggle();
$(".chatBox-list").fadeToggle();
$(".chatBox-kuang").fadeToggle();
//传名字
$(".ChatInfoName").text($(this).children(".chat-name").children("p").eq(0).html());
//传头像
$(".ChatInfoHead>img").attr("src", "jqueryChat/img/icon01.png");
//聊天框默认最底部
$(document).ready(function () {
$("#chatBox-content-demo").scrollTop($("#chatBox-content-demo")[0].scrollHeight);
});
})
});