onclick 增量数
使用 JavaScript,如何才能在单击表单按钮时为数字加 1? 它增加的数字可能位于表单文本字段或其他内容中。
显然它会在 onclick 上,但我不确定代码。
With JavaScript, how can I do it so when I click a form button it adds 1 to a number?
The number it increments could be in a form text field or something.
Obviously it'd be on onclick but I'm not sure of the code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(14)
无需担心使用 Javascript 递增/递减数字。现在 HTML 本身提供了一种简单的方法。
就是这么简单。问题是它只能在某些浏览器中正常工作。Mozilla 尚未支持此功能。
No need to worry for incrementing/decrementing numbers using Javascript. Now HTML itself provides an easy way for it.
It is that simple.The problem is that it works fine only in some browsers.Mozilla has not yet supported this feature.
对于那些不需要输入框的人,您可以查看以下可立即编译的示例,该示例仅计算按钮单击次数,在文本中更新它们并切换字体。您可以获取该值并在您认为合适的任何地方使用它。
For those who do NOT want an input box, here's a ready-to-compile example you can check out, which just counts the button clicks, updates them in the text and toggles the font. You could take the value and use it anywhere you see fit.
看看这个。
Check this out.
那么 jQuery 库必须位于 head 部分。
jQuery Library must be in the head section then.
由于您没有给我任何开始的机会,所以这是一个简单的例子。
jsFiddle
示例实现:
示例 Html
Since you gave me nothing to start on, here is a simple example.
jsFiddle
Example implementation:
Example Html
最基本的形式..
JavaScript:
标记:
In its most basic incarnation..
JavaScript:
Markup:
jQuery 示例
“简单”JavaScript 示例
jQuery Example
'Plain' JavaScript Example
是的!您绝对可以使用
onclick
,也可以使用addEventListener
来监听点击事件。在此代码示例中,onclick
事件正在执行(使用)。HTML 代码:
Javascript 代码:
演示
Yes! You can definitely use
onclick
or you can also useaddEventListener
to listen a click event. In this code sample theonclick
event is in action(use).HTML code:
Javascript code:
Demo
我知道这是一篇旧帖子,但它与我目前正在做的事情相关。
我的目标是在 html 页面顶部创建下一页/上一页按钮,并说我在“book.html”上,当前“显示”ID 内容为“page-1.html”通过ajax,如果我单击“下一步”按钮,它将通过ajax加载“page-2.html”,而无需重新加载页面。
我将如何通过 AJAX 来做到这一点,因为我已经看到了很多示例,但其中大多数是完全不同的,并且大多数使用 AJAX 的示例都是针对 WordPress 表单之类的。
目前使用下面的行将打开整个页面,我想知道如果可能的话使用 AJAX 的最佳方法:)
窗口.location(url);
我将以下代码作为示例:
I know this is an old post but its relevant to what I'm working on currently.
What I'm aiming to do is create next/previous page buttons at the top of a html page, and say I'm on 'book.html', with the current 'display' ID content being 'page-1.html' through ajax, if i click the 'next' button it will load 'page-2.html' through ajax, WITHOUT reloading the page.
How would I go about doing this through AJAX as I have seen many examples but most of them are completely different, and most examples of using AJAX are for WordPress forms and stuff.
Currently using the below line will open the entire page, I want to know the best way to go about using AJAX instead if possible :)
window.location(url);
I'm incorportating the below code as an example:
简单的 HTML + Thymeleaf 版本。使用控制器编写代码
这就是它的外观 - 您可以根据样式更改按钮的外观。
https://i.sstatic.net/b97N1.png
Simple HTML + Thymeleaf version. Code with Controller
This is how it looks - look of buttons you can change with style.
https://i.sstatic.net/b97N1.png