0
我自動滾動使用jQuery不工作,這裏有什麼在我的CSS:自動滾動不工作
#convo_mes{
text-align:left;
width:98%;
height:80%;
background:#fff;
border:1px solid #000;
overflow-x:auto;
}
,並在我的JS:
$(".mes").click(function(){
var user = $(this).attr("id");
$("#convo").html("<b>"+user+"</b>");
$("#convo_ctrl").show();
$(".send_to").attr("id",user);
$(".convo_mes").html("Loading conversation <img width='15' height='15' src='./img/load.gif'>");
setTimeout(function(){auto_scrollmes},3000);
setTimeout(function(){get_convo(user)},2000);
});
function auto_scrollmes(){
var objDiv = $("#convo_mes");
objDiv.scrollTop = objDiv.scrollHeight;
}
它仍然不工作,我不停地變化着的東西但仍然沒有運氣。 這裏是我的HTML代碼:
<div id="conversation">
<h2>Conversation</h2>
<hr />
<center>
<div id="convo">
Please select a message to load in here!
</div>
<div id="convo_mes">
<div class="convo_mes">
</div>
</div>
<div id="convo_ctrl">
<textarea spellcheck="false" placeholder="Enter your message here..." id='mes_text_area'></textarea><a href="#send" id="send_message">Send</a>
</div>
</div>
'的setTimeout(函數(){auto_scrollmes()},3000);'你必須呼叫功能 –
等待讓我檢查 –
沒有工作,即使我添加() –