0

我一直在开发应用程序,并为 JEditable 使用以下代码:

<script type="text/javascript" charset="utf-8"> 
        $(function() 
        {  
             $(".field").editable("http://"+document.location.host+"/index.php/welcome/update_record", 
             { 
                event  : "mouseover",
                style  : "inherit",
                autogrow: {
                    lineHeight : 0,
                    maxHeight : 0
                },
                submitdata: function (value, settings) {
                            return { "old_value": this.revert};
                },
                callback: function(value, settings) 
                {
                }
            });  
        });

我需要禁用字段的自动增长,以便如果用户在字段上移动,那么该字段将不会增长。现在,如果用户在它上面移动,字段就会增长。我需要它,请帮忙。非常感谢。

4

1 回答 1

1

我已经成功使用

宽度:'100%' 作为参数。试试看。

<script type="text/javascript" charset="utf-8"> 
        $(function() 
        {  
             $(".field").editable("http://"+document.location.host+"/index.php/welcome/update_record", 
             { 
                event  : "mouseover",
                width     : '100%'
                style  : "inherit",
                autogrow: {
                    lineHeight : 0,
                    maxHeight : 0
                },
                submitdata: function (value, settings) {
                            return { "old_value": this.revert};
                },
                callback: function(value, settings) 
                {
                }
            });  
        });
于 2012-07-23T16:27:58.113 回答