gpt4 book ai didi

javascript - 使用 C# 修改 Javascript

转载 作者:行者123 更新时间:2023-11-28 06:01:55 30 4
gpt4 key购买 nike

我有一个带有 JavaScript 的网页,上面有一个计时器。

<script type="text/javascript">
(function($){

var count = 10;
countdown = setInterval(function () {
if (count == 0) {
$("#countdown").remove();
}
count--
}, 1000);

$(document).on('submit', 'form.proform', function() {
if(count > 0)
return false;
});

})(jQuery);
</script>

现在我想创建一个 C# 应用程序来拥有一个客户端。但我不想等到计时器到我可以观看球洞位置为止。有没有办法修改 C# 中的 var count 来跳过计时器?感谢您的帮助!

最佳答案

试试这个。

在 J 中:

var count = <%=CountValue%>;

在 C# 中:

public int CountValue{ get { return this._countValue; } set { _countValue = value; } } 

像这样设置页面加载中的计数值

this._countValue=0;

关于javascript - 使用 C# 修改 Javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37208710/

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