gpt4 book ai didi

javascript - 使用里程表将变量传递给 jquery

转载 作者:行者123 更新时间:2023-12-03 11:47:53 26 4
gpt4 key购买 nike

我想使用 jquery 里程表在母版页上显示信息。 http://www.jqueryscript.net/animation/Smooth-Animated-Numbers-with-Javascript-CSS3-odometer.html

为了做到这一点,我必须使用 C# 从 SQL Server 检索该值。然后我必须将其传递给 html() 中的 jscript 里程表,如下所示。如果我得到值 - 如何将其发送到 javascript?

<script>
setTimeout(function(){
$('.odometer').html('123222');
}, 1000);
</script>

最佳答案

试试这个html

</head>
<body>

<script src="https://rawgit.com/HubSpot/odometer/v0.4.6/odometer.min.js"></script>
<style src="https://rawgit.com/HubSpot/odometer/master/themes/odometer-theme-default.css"></style>

<script>
odometerOptions = {
auto: false
};
</script>

<script type = "text/javascript">
$(function(){
var exampleOdometerValue = 123456;
var exampleOdometer = new Odometer({ el: $('.odometer-example')[0], theme: 'digital', value: exampleOdometerValue });
exampleOdometer.render()

setTimeout(function(){
exampleOdometerValue = exampleOdometerValue+100.07;
exampleOdometer.update(exampleOdometerValue);
}, 2000);

});
</script>
<div class="odometer odometer-example">123</div>

</body></html>

关于javascript - 使用里程表将变量传递给 jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25969431/

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