如何在钛UI组件中使用TM符号?

问题描述 投票:0回答:1

我想在创建标签时使用TM(商标符号)。

Ti.UI.createLabel({
        text: '© ' + (new Date().getFullYear()) + ' companyname 0xE2 0x84 0xA2',
        font: {
            fontSize: 13,
            fontWeight: 'bold',
            fontFamily: 'Verdana'
        },
        color: '#FFFFFF',
        left: 3,
        bottom: 5,
        visible: false
    });

以前使用版权符号作为复制粘贴,但这将是最后的选择。

有什么帮助吗?

titanium titanium-mobile appcelerator-titanium appcelerator-mobile
1个回答
1
投票

你可以这样使用它。

var l = Ti.UI.createLabel({
    text: '© ' + (new Date().getFullYear()) + ' companyname \u2122',
    font: {
        fontSize: 20,
        fontWeight: 'bold'
    },
    color: '#000'
});

它将显示 © 2020 公司名称 ™

© www.soinside.com 2019 - 2024. All rights reserved.