我想为客户端键入文本字段的文本设置样式。文本应该在我的html中显示样式。我有3个switch语句。 我如何使用跨度来设计它。
var text = myProjectpage.model.currentChoices.TextLine1Text;
switch( myProjectpage.model.currentChoices.TextLine1Text.length ) {
case 1:
layer_InHTML= text; // allows what the user types to show in my html
//one letter should be big.
break;
case 2:
layer_InHTML = "<span ='font-size:2.5em;'>text.charAt(0)</span>"+charAt(1)
// this does not work. How can I improve this?
//two letters should be big
case 3:
//three letters should be big.
break;
答案 0 :(得分:0)
如果你想大写所有字母,除了最后一个字母(从你的switch语句中的case 2开始),你可以使用以下代码而不需要任何switch语句:
if form.is_valid():
obj = form.save()
检查演示 - Fiddle。