我试图将图像链接保存到列表中,以便将变量作为项目传递给js。
这是图像链接:
<img src="{{=URL('static','images/3.jpg')}}" style="max-height='100px';border-radius:7px;"/>
I tried using:
lst = ["""<img src="{{=URL('static','images/3.jpg')}}" style="max-height='100px';border-radius:7px;"/>"""]
但是有些不对劲。
我该如何实现?
致谢
答案 0 :(得分:0)
由于您的元素包含双引号,因此应使用反斜杠将其转义:
lst = ["<img src=\"{{=URL('static','images/3.jpg')}}\" style=\"max-height='100px';border-radius:7px;\"/>"]
console.log(lst[0]);