【问题标题】:HTML data-attribute not accepting child html class and other attributeHTML 数据属性不接受子 html 类和其他属性
【发布时间】:2023-01-05 23:36:26
【问题描述】:

当我使用数据属性时,它接受常规的 html 标签。但不接受儿童班。例如,看我的第一段代码;

<p>Lorem ipsum <a href="#" class="mi-tooltip" data-tooltip="<h1>MIUI_Tooltips is a lightweight.</h1><p>Around 5KB minified </p><u>and offering</u> a wide range <i>of configuration options.</i> <br><br><button> A Button </button>">condimentum</a>.Eros natoque.</p>

它运行良好,因为我在此处添加了常规的 html 标记。但是当我在 data-****** 属性中添加类和值时,它不起作用。看第二个代码;

<p>Lorem ipsum <a href="#" class="mi-tooltip" data-tooltip="<img src="https://images.pexels.com/photos/8726372/pexels-photo-8726372.jpeg?auto=compress&cs=tinysrgb&w=1260" width="100%" class="my-image"/><h1>MIUI_Tooltips is a lightweight.</h1><p>Around 5KB minified </p><u>and offering</u>">condimentum</a>.Eros natoque.</p>

如何在一个数据属性 HTML 标记中添加图像、类、链接和其他属性?

【问题讨论】:

  • 你需要转义你的报价
  • @Pete 如果我转义引号,我如何使用/添加类、ID、URL ...?

标签: javascript html css attributes custom-data-attribute


【解决方案1】:

好像你必须用 &amp;quot; 替换 "

document.querySelector('a').dataset.tooltip = '<img src="https://images.pexels.com/photos/8726372/pexels-photo-8726372.jpeg?auto=compress&cs=tinysrgb&w=1260" width="100%" class="my-image"/><h1>MIUI_Tooltips is a lightweight.</h1><p>Around 5KB minified </p><u>and offering</u>'

console.log(document.querySelector('a').outerHTML)
&lt;p&gt;Lorem ipsum &lt;a href="#" class="mi-tooltip"&gt;condimentum&lt;/a&gt;.Eros natoque.&lt;/p&gt;
<a href="#" class="mi-tooltip" data-tooltip="<img src=&quot;https://images.pexels.com/photos/8726372/pexels-photo-8726372.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1260&quot; width=&quot;100%&quot; class=&quot;my-image&quot;/><h1>MIUI_Tooltips is a lightweight.</h1><p>Around 5KB minified </p><u>and offering</u>">condimentum</a>

我想 ' 也可以:

&lt;p&gt;Lorem ipsum &lt;a href="#" class="mi-tooltip" data-tooltip="&lt;img src='https://images.pexels.com/photos/8726372/pexels-photo-8726372.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1260' width='100%' class='my-image'/&gt;&lt;h1&gt;MIUI_Tooltips is a lightweight.&lt;/h1&gt;&lt;p&gt;Around 5KB minified &lt;/p&gt;&lt;u&gt;and offering&lt;/u&gt;"&gt;condimentum&lt;/a&gt;.Eros natoque.&lt;/p&gt;

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2012-08-03
    • 2018-08-12
    • 1970-01-01
    • 2016-01-14
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多