CSS文字转换大写

CSS文字转换大写,第1张

CSS文字转换大写

CSS无法做到这一点,您可以为此使用PHP或Javascript。

PHP示例

$text = "ALL CAPS";$text = ucwords(strtolower($text)); // All Caps

jQuery示例(现在是插件!):

// Uppercase every first letter of a wordjQuery.fn.ucwords = function() {  return this.each(function(){    var val = $(this).text(), newVal = '';    val = val.split(' ');    for(var c=0; c < val.length; c++) {      newVal += val[c].substring(0,1).toUpperCase() + val[c].substring(1,val[c].length) + (c+1==val.length ? '' : ' ');    }    $(this).text(newVal);  });}$('a.link').ucwords();​


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5621174.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存