我只是从自己做的 j花开始。 我仍然围绕与他们合作的概念总结我的头脑,在gin子里添加方法,我最近的努力失败了,我很想知道原因。 在该案中,我经常使用一只手法,以做头脑,并想把这改成花板。
<><><><>>><>>>>><>>>>>>
<div id="contain">
<input type="text" /><br />
<input type="text" /><br />
<input type="text" />
</div>
www.un.org/spanish/ecosoc
function capitaliseFirstLetter(string)
{
return string.charAt(0).toUpperCase() + string.slice(1);
}
$( #contain > input ).keyup(function(){
var $this = $(this);
$this.val(capitaliseFirstLetter($this.val()));
});
www.un.org/Depts/DGACM/index_spanish.htm 我的尝试
(function($) {
$.fn.capFirst = function () {
$(this).keyup(function(){
var $this = $(this);
$this.val(methods.capitaliseFirstLetter($this.val()));
});
};
var methods = function () {
capitaliseFirstLetter: function(inputValue) {
return inputValue.charAt(0).toUpperCase() + inputValue.slice(1);
}
};
})(jQuery);
$( #contain > input ).capFirst();
jsfiddle:。
UPDATE
working solution in jsfiddle: http://jsfiddle.net/ypWTd/163/