回复框高度自动增减js同步
This commit is contained in:
parent
3ffb909e15
commit
e61aa9e0dc
|
@ -3,8 +3,8 @@ app.directive('inputAuto',function(){
|
|||
restrict: 'A',
|
||||
scope: {},
|
||||
link: function(scope, element){
|
||||
var copyContainer = element.parent().children().eq(0);
|
||||
var sendButton = element.parent().next();
|
||||
var copyContainer = element.parent().children().children().eq(0);
|
||||
var sendButton = element.next();
|
||||
element.on('input',function(){
|
||||
console.log(sendButton);
|
||||
copyContainer.html(element[0].value);
|
||||
|
|
Loading…
Reference in New Issue