从整数中添加/减去选定的值

发布于 2024-10-31 13:31:34 字数 236 浏览 0 评论 0原文

我对 jquery 很陌生。我广泛利用了我能够找到和理解的东西。但是,我完全不确定如何解决这个特定问题。

我有一个整数,在 html 中显示为 DOM 字符串。使用 Jquery,我设置了一个上下文菜单,显示数字 +1->+10 和 -1->-10。我正在寻找一种从初始整数中添加/减去上下文菜单条目的值的方法。

例如,我有初始整数 100,我右键单击它,显示上下文菜单。我转到-5,然后单击它。整数更改为 95。

I'm quite new to jquery. I've made extensive use of what i've been able to find and understand. However, i'm not sure at all how to tackle this particular problem.

I have an integer that manifests as a DOM string in html. Using Jquery, i've set up a contextual menu that displays the numbers +1->+10, and -1->-10. I'm looking for a way to add/subtract the value of an entry of the contextual menu, from the initial integer.

For example, i have the initial integer 100, i right click on it, revealing the contextual menu. I go to the -5, and click it. The integer changes to 95.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

作业与我同在 2024-11-07 13:31:34

如果您已为初始整数指定了 ID,则可以在上下文菜单单击处理程序中执行以下操作:
$('#integer').html(parseInt($('#integer').html())-numberClicked)

If you've given your initial integer an ID, you could do the following in the context-menu click handler:
$('#integer').html(parseInt($('#integer').html())-numberClicked)

空城仅有旧梦在 2024-11-07 13:31:34

您可以使用 parseInt 将字符串解析为 int,然后它只是简单的 +/-/*

alert(parseInt('12') + 4);

You can use parseInt to parse your string to a int, and then it's just simple +/-/*

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