Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个 xsl 变量值,它们是这样的
<xsl:value-of select="$singleprice"/> // value= 1,56 <xsl:value-of select="$asd"/> //value=25
我正在做这样的乘法
<xsl:value-of select="$asd * $singleprice"/>
对我来说一切看起来都很好,但它总是返回NAN 任何人都可以指出我做错了什么吗?
NAN
XPath/XSLT 1.0 数字格式是双精度浮点数,因此您的输入需要采用格式1.26,而不是1,26.
1.26
1,26