如何将标签放入 html 属性中?

发布于 2024-08-31 15:01:19 字数 601 浏览 2 评论 0原文

使用 xslt 我想创建一个属性:

<span class="tooltip">
            <xsl:attribute name="onmouseover">
                <xsl:text>javascript:function(</xsl:text>
                <span class="label">Aggiunta</span> 
                <xsl:apply-tempaltes/>
                <xsl:text>)</xsl:text>
            </xsl:attribute>

问题是只有纯文本被放入属性内,就像

<span class="tooltip" onmouseover="javascript:function(Aggiunta ...)">

没有 span 标签或可能来自 apply-templates 的标签一样。

那么如何将html代码放入属性中呢?

Using xslt i want to create an attribute:

<span class="tooltip">
            <xsl:attribute name="onmouseover">
                <xsl:text>javascript:function(</xsl:text>
                <span class="label">Aggiunta</span> 
                <xsl:apply-tempaltes/>
                <xsl:text>)</xsl:text>
            </xsl:attribute>

The problem is that only the pure text is putted inside the attribute, like

<span class="tooltip" onmouseover="javascript:function(Aggiunta ...)">

whithout the span tags or the tags that may come from apply-templates.

So how can I put html code into an attribute?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

靑春怀旧 2024-09-07 15:01:19

如果您尝试生成正确的 xhtml,您实际上根本不应该这样做,而应该让您的属性值引用不包含这些字符的更简单的 javascript。

定义格式正确的 XML 的规则明确禁止属性值包含“<”特点。请参阅W3C 建议

If you're trying to produce correct xhtml, you really shouldn't do this at all, but make your attribute value reference a simpler javascript not containing these characters.

The rules defining well-formed XML explicitly forbid attribute values from containing the '<' character. See the W3C Recommendation.

じ违心 2024-09-07 15:01:19

您应该将事件绑定到 HTML 元素,而不是直接写为属性。
该示例基于 jQuery。

$( ".tooltip" ).bind( "mouseover", function() {
  // some code goes here 
});

HTML 应该看起来类似:

<span class="tooltip">Some text</span>

You should bind event to HTML elements not writing directly as attribute.
This sample is based on jQuery.

$( ".tooltip" ).bind( "mouseover", function() {
  // some code goes here 
});

and HTML should look similar like so:

<span class="tooltip">Some text</span>
瀟灑尐姊 2024-09-07 15:01:19

最好的选择是使用外部 JavaScript 文件。立即修复将包括使用 CDATA 标签。

<xsl:text><![CDATA[myfunction("<span class='label'>Aggiunta</span>]]></xsl:text>

请注意,内联 JavaScript 仅在某些情况下接受变量。

XML 规范对字符数据有何规定(例如属性值)

与号字符 (&) 和左尖括号 (<) 不得以其文字形式出现,除非用作标记分隔符,或在注释、处理指令或 CDATA 部分中使用。如果其他地方需要它们,则必须分别使用数字字符引用或字符串“ & ”和“ < ”对其进行转义。右尖括号 (>) 可以使用字符串“ > ”表示,并且为了兼容性,当它出现在字符串“ ]] 中时,必须使用“ > ”或字符引用进行转义> " 在内容中,当该字符串未标记 CDATA 部分的结尾时。

the best option would be using an external JavaScript file. an immediate fix would include the use of CDATA tags.

<xsl:text><![CDATA[myfunction("<span class='label'>Aggiunta</span>]]></xsl:text>

note that inline JavaScript accepts variables only under certain circumstances.

what the XML Specs say about Character Data (e.g. attribute values)

The ampersand character (&) and the left angle bracket (<) MUST NOT appear in their literal form, except when used as markup delimiters, or within a comment, a processing instruction, or a CDATA section. If they are needed elsewhere, they MUST be escaped using either numeric character references or the strings " & " and " < " respectively. The right angle bracket (>) may be represented using the string " > ", and MUST, for compatibility, be escaped using either " > " or a character reference when it appears in the string " ]]> " in content, when that string is not marking the end of a CDATA section.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文