如何在警报中插入字体图标

时间:2019-07-10 10:14:20

标签: angular icons nativescript alert nativescript-angular

我正在使用Nativescript和Angular创建一个跨平台的应用程序。我想插入一个字体图标作为警报标题。我有一个自定义图标字体,其字符代码从e900到e906。

我用String.fromCharCode(0xe901)设置了文本,但是它给出了中文的表意文字。

我尝试插入<label class="ico"> + String.fromCharCode(0xe901) + </label>,但这显然是错误的。

dialogs.confirm({
        title: "<label class=\"ico\">" + String.fromCharCode(0xe901) + "</label>",
        message: "Are you sure?",
        okButtonText: "Ok",
        cancelButtonText: "Cancel"
    }).then(result => {
        //...some code...
    });

有没有没有任何插件的方法吗?

我已经尝试过fancyalert,但似乎不适用于Angular。

0 个答案:

没有答案