我尝试使用语法 $inf_ 来获取签出属性的值

发布于 2024-12-07 07:48:12 字数 277 浏览 1 评论 0原文

我正在获取该值,但问题是该值被包裹在 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 技术交流群。

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

发布评论

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

评论(1

亚希 2024-12-14 07:48:12

很难从你的代码中看出 $inf_cartAmt 是什么,但你可以尝试 -

$inf_cartAmt(chkCartSubtlAmt).text();

如果失败,你可以使用 jQuery 从字符串中删除 span 标签 -

subtotal = $(subtotal).text()

It's hard to tell what $inf_cartAmt is from your code, but you could try -

$inf_cartAmt(chkCartSubtlAmt).text();

Failing that, you could use jQuery to remove the span tag from your string -

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