我一直在开发应用程序,并为 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)
{
}
});
});
我需要禁用字段的自动增长,以便如果用户在字段上移动,那么该字段将不会增长。现在,如果用户在它上面移动,字段就会增长。我需要它,请帮忙。非常感谢。