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
輸入字段?
感謝
我已經有了。我應該鏈接你嗎? – Qcom 2011-05-14 00:28:14