如何通过angular js脚本添加url

时间:2016-07-25 08:54:37

标签: javascript angularjs

我如何将URL(href或sref)添加到title参数中,该参数位于以下代码片段中给出的for循环内部。

我尝试过标题:

$sce.trustAsHtml("<a sref='#'>" + json1[int].comment + "</a>")

并尝试过 网址:$sce.trustAsHtml("<a sref='#'>" + json1[int].comment + "</a>")

但这不起作用。在此先感谢!!

        var calEvents = [];

            for (var int = 0; int < json1.length; int++) {
                //alert(JSON.stringify(json1));

                var d = new Date(json1[int].reminderDate);

                calEvents.push({

                   //title: $sce.trustAsHtml("<a sref='#'>" + json1[int].comment + "</a>"),
                   title: json1[int].comment,
                       /*Here i want to add href/URL to title   */
                       // url: $sce.trustAsHtml("<a sref='#'>" + json1[int].comment + "</a>"),
                       start: d,
                       allDay: true
                    });
                   // alert(json1[int].comment);

            }

            $scope.events = calEvents;
            $scope.eventSources = [$scope.events];

0 个答案:

没有答案