在JavaScript中编写内联HTML元素不起作用?

时间:2017-05-06 20:27:02

标签: javascript html json angular ecmascript-6

this.selectedDashboard.data.name是以json字符串格式返回的承诺,它等于所选的短划线名称。 (例如:名称:'我的仪表板')。那么如何在不弄乱html文件的情况下使其大胆或强大。坦率地说,我有点无法访问html文件。

所以this.sialertdialog的输出如下:您确定要删除我的信息中心吗?此操作无法撤消!

deleteDashboard = () => {
        let dashname = this.selectedDashboard.data.name;
        console.log(dashname);
        this.siAlertDialog.confirm(this.$filter('translate')('SI-MESSAGES.DELETE-DASHBOARDMSG') + dashname +' ?'+ ' This operation cannot be undone!')

1 个答案:

答案 0 :(得分:1)

 this.$filter('translate')('SI-MESSAGES.DELETE-DASHBOARDMSG') +"<strong>"+ dashname +'</strong> ? This operation cannot be undone!'

即使您无法访问html,也可以嵌入html ...