gpt4 book ai didi

javascript - angularjs xeditable.js 文本字段的动态宽度

转载 作者:太空宇宙 更新时间:2023-11-04 13:51:10 26 4
gpt4 key购买 nike

我正在尝试使 xeditable textfield 的宽度随着输入文本的增加或减少。我尝试了以下代码但没有结果。

    $('.editable-input').keyup(function() {
$(this).css('width', $(this).val().length*10);
});

最佳答案

经过长时间的研究,我找到了问题的解决方案。虽然似乎没有人真正打扰我的问题大声笑。

  $('.parent-container').on('keyup', '.editable-input', function () {
$(this).css('width', $(this).val().length*9);
});

关于javascript - angularjs xeditable.js 文本字段的动态宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22197728/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com