单词javascript中的间距

时间:2015-08-19 12:46:38

标签: javascript html space

我写了这段代码:

$(document).ready(function(){
    setTimeout( function(){
        if($("#site-type").length) {
        $(".typewrite span").typed({
            strings: ["show case ", "projekt"],
            typeSpeed: 100,
            backDelay: 500,
            loop: false,
            fontcolor: "green",
            contentType: 'html', // or text
            // defaults to false for infinite loop
            loopCount: false,
      [A-Za-z']+( [A-Za-z']+)*$
        });
    }
    }, 4000);
});
}

我希望像这样有空间: 您好(这是脚本输入)

不喜欢这样: 您好(这是脚本输入)

1 个答案:

答案 0 :(得分:0)

猜猜:尝试用strings: ["show case ", "projekt"],替换strings: [" ", "show case ", "projekt"],