gpt4 book ai didi

javascript - AngularJS 转义引号

转载 作者:行者123 更新时间:2023-11-30 09:45:38 25 4
gpt4 key购买 nike

我很难从以下语句中转义引号

on-mouseover="mouseover('{{landmark.name}}')"其中 landmark.name="Duke's Car"

我尝试了各种解决方案,例如:

    $scope.escapeQuotes= function(str) {
return str
.replace(/('|\")/g, "\\$1")
.replace(/("|\")/g, "\\$1")
}

但是好像不行。看起来像一个简单的问题,但我很难找到解决方案。欢迎任何指点。

最佳答案

我会说使用 ng-mouseover 代替,你不需要担心转义的事情

ng-mouseover="mouseover(landmark.name)"

代码

$scope.mouseover = function(name){
console.log("Value output:", name)
}

关于javascript - AngularJS 转义引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39006487/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com