gpt4 book ai didi

jquery - 在变量上使用正则表达式?

转载 作者:行者123 更新时间:2023-12-01 06:12:44 25 4
gpt4 key购买 nike

假设我有这个:

$(function() {

var seconds = 142.097019375;

seconds = seconds.replace(/\.[0-9]*/, '');

alert(seconds);

});

这不起作用,但如果秒是 $('.seconds').html(); 它会替换它,无论如何都可以对 jquery 变量执行正则表达式。

最佳答案

如果您的变量是一个数字,并且您确实想仅提取整数部分,那么您将需要使用 Math.floorMath.ceil :

var int_part = seconds > 0 ? Math.floor(seconds) : Math.ceil(seconds);

关于jquery - 在变量上使用正则表达式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6399414/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com