我尝试使用语法 $inf_ 来获取签出属性的值
我正在获取该值,但问题是该值被包裹在 span 标记中。
例如 2 获取小计, 我使用了 var subtotal=$inf_cartAmt(chkCartSubtlAmt); 上述语法的输出是
var subtotal=<span class="cartAmt_chkCartSubtlAmt">
$94.93
</span>;
注意 val $94.93 是如何包装在 span 标签中的。 我们是否有任何其他语法可以给出值。
I am getting the value but the problem is that the value gets wrapped in span tag.
For example 2 get the subtotl,
I used var subtotal=$inf_cartAmt(chkCartSubtlAmt);
Output for above syntax is
var subtotal=<span class="cartAmt_chkCartSubtlAmt">
$94.93
</span>;
Note how the val $94.93 is wrapped in span tag.
Do we have any other syntax which can just give the value.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很难从你的代码中看出
$inf_cartAmt
是什么,但你可以尝试 -如果失败,你可以使用 jQuery 从字符串中删除 span 标签 -
It's hard to tell what
$inf_cartAmt
is from your code, but you could try -Failing that, you could use jQuery to remove the span tag from your string -