我需要结合focus()和scrollTop()。
这适用于focus():
$(document.body).on("click",".comment_b",function() {
var ID = $(this).attr("id");
$("#textarea2-"+ID).focus();
return false;});
如何在focus()之后添加scrollTop()?
答案 0 :(得分:1)
$(document).on("click",".comment_b",function() {
var ID = $(this).attr("id");
$("#textarea2-"+ID).focus().scrollTop();
return false;
});
答案 1 :(得分:0)
试试这个:
$(document.body).on("click",".comment_b",function()
{
var ID = $(this).attr("id");
$("#textarea2-"+ID).focus();
$("#textarea2-"+ID).scrollTop(0);
return false;
});
您也可以使用此
$(document.body).on("click",".comment_b",function()
{
var ID = $(this).attr("id");
$("#textarea2-"+ID).focus().scrollTop(0);
return false;
});