如何自动调整文本字段宽度

时间:2014-07-18 13:46:43

标签: javascript

我试图扩大 我无法让它发挥作用......任何解决方案?

http://jsfiddle.net/ZeL6P/ sample here

http://jsfiddle.net/9uv2q/ another sample too...

1 个答案:

答案 0 :(得分:1)

由于您在评论中提到您正在使用的元素具有!important属性,因此我的建议是使用内置的javascript方法setProperty而不是jquery。它允许您轻松地将!important添加到新的css属性值:

$(document).ready( function() {
$("#btn").click(function(){
    document.getElementById('lbl').style.setProperty('width', '300px', 'important');
});

});

我还更新了jsfiddle以便您可以看到它的工作原理: http://jsfiddle.net/9uv2q/2/