我使用SharePoint列表单行称为“位置”的文本来存储google map嵌入代码。 在我的XSL文件中,我正在使用如下所示的iframe。
每当我在iframe中运行页面xsl always generation <a href>
标签时,请找到所附的图片以供参考。enter image description here
存储的值是列表字段 enter link description here
我的xsl模板
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" exclude-result-prefixes="xsl">
<xsl:output method="html" indent="yes" />
<xsl:template match="/">
<div>
<xsl:apply-templates />
</div>
</xsl:template>
<xsl:template match="Row">
<hr />
<div class="container">
<div class="location">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<h2 class="service_head">Location</h2>
<iframe width="100%" height="400px">
<xsl:attribute name="src">
<xsl:value-of select="@location" />
</xsl:attribute>
</iframe>
</div>
</div>
</div>
</div>
</xsl:template>
</xsl:stylesheet>