2011-05-14 77 views
0

我發現下面的jQuery的形式排列插件在博客中的評論:jQuery表單對齊插件?

jQuery.fn.autoWidth = function(options) 
{ 
    var settings = { 
     limitWidth : false 
    } 

    if(options) { 
     jQuery.extend(settings, options); 
    }; 

    var maxWidth = 0; 

    this.each(function(){ 
     if ($(this).width() > maxWidth){ 
      if(settings.limitWidth && maxWidth >= settings.limitWidth) { 
      maxWidth = settings.limitWidth; 
      } else { 
      maxWidth = $(this).width(); 
      } 
     } 
    }); 

    this.width(maxWidth); 
} 

我包括這在我的表單頁面form_autoWidth.js

我也被稱爲從一個單獨的文件這個插件,form_align.js

$(document).ready(function() { 
    $('.cleartext').autoWidth(); 
}); 

不應該在該對齊.cleartext輸入字段?

感謝

回答

0

您需要確保在調用該函數來autowidth輸入字段的文件是jQuery的外部文件之後。

+0

我已經有了。我應該鏈接你嗎? – Qcom 2011-05-14 00:28:14