JavaScript 和HTML 表单元素

发布于 2024-11-17 08:58:43 字数 214 浏览 5 评论 0原文

使用 HTML 表单元素,我希望允许在文本字段(文本区域或输入类型=“文本”)中输入“数字”及其小数分隔符字符 - 仅限!

任何非数字字符都应该被忽略,并且不会出现在父元素中,然后我将使用该特定值在我的数据库表中提交。

在 jQuery 的支持下,这是否可以通过 JavaScript 实现?

任何解决方案都是可以接受和欢迎的!

谢谢转发,小伙子们。

Using the HTML Form Elements, I would like to allow an input of "numeric" and it's decimal seperator characters into a textfield (either textarea or an input type="text") - ONLY!

Any non-numeric character should be ignored with no appearance in the parent element whatsoever, and then I will use that particular value to submit in my database tables.

Is this achiveable with JavaScript with jQuery's support, or not?

Any solution is quite acceptable and welcome!

Thanks in forwards, lads.

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

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

发布评论

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

评论(6

东京女 2024-11-24 08:58:43

我非常喜欢将 HTML 设置为使用浏览器的 HTML5 输入/表单验证类型,然后通过 jQuery 插件添加对较小浏览器(即 IE)的支持。

看看这个:http://flowplayer.org/tools/validator/index.html

I'm a big fan of setting my HTML up to use the browser's HTML5 input/form validation types and then adding support for the lesser browsers (i.e. IE) via jQuery plugins.

Check this out: http://flowplayer.org/tools/validator/index.html

一曲爱恨情仇 2024-11-24 08:58:43

我不确定 JQuery 解决方案,但这是一个纯 JS 答案。

HTML

<input type="text" onclick="check(this)"></input>

JavaScript

function check(obj)
{
    return(!isNaN(obj.value));
}

希望这会有所帮助。

I'm not sure about a JQuery solution but here's a pure JS answer.

HTML

<input type="text" onclick="check(this)"></input>

JavaScript

function check(obj)
{
    return(!isNaN(obj.value));
}

Hope this helps.

孤云独去闲 2024-11-24 08:58:43

查看这个 jQuery 插件

字母数字

Check out this jQuery plugin

Alphanumeric

残龙傲雪 2024-11-24 08:58:43

是的。只要谷歌一下 jQuery Masked Input,你就会发现大量的插件可以让你做到这一点。

Yes it is. Just google jQuery Masked Input and you will find a plethora of plug-ins that will allow you to do this.

ま昔日黯然 2024-11-24 08:58:43

尝试http://www.mredkj.com/tutorials/validate2.html
您可以使用 jQuery 将函数句柄绑定到 HTML 元素事件,如模糊、按键等。

PS:类似的功能还有很多,google一下就可以了。

Try http://www.mredkj.com/tutorials/validate2.html.
you can use jQuery to bind the function handles to the HTML element events like blur,key up,etc.

P.S:There are many such function just a google search away.

暖心男生 2024-11-24 08:58:43

有许多适用于 jQuery 的 Masked Edit 插件,例如 文本框过滤器 这是相当可配置的。

There are a number of Masked Edit plugins for jQuery, such as Text Box Filter that's quite configurable.

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