gpt4 book ai didi

jquery - AngularJS ng 风格的问题

转载 作者:行者123 更新时间:2023-12-01 07:04:45 25 4
gpt4 key购买 nike

ng-style 会自动为背景 url 值添加 "

js

$scope.url = 'https://background_image_url.png' in my controller

html

<div ng-style="{'background': 'url('+url+') repeat'">

当我使用 innerHTML 或 JQuery html() 函数从 View 中获取 html 时,我得到了

style="background: url(&quot;https://background_image_url.png&quot;);

注意背景图像 url 周围的 "

参见http://jsfiddle.net/ADukg/26199/ .

有谁知道如何避免 url 背景中的 ",这个 html 确实有效,但在雅虎邮件中出现了问题:(

最佳答案

由于您要将 html 转换为文本,因此它会将 html 实体显示为 "如果您想转换回正常链接,您必须使用替换方法并传递此正则表达式,它将转换回正常文本。

var html = $('#quote_issue_div').html().replace(/&quot;/g, '\\"');

关于jquery - AngularJS ng 风格的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51368208/

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