旧浏览器的真正占位符文本修复?

发布于 2024-12-28 03:48:24 字数 186 浏览 1 评论 0原文

我想使用 jQuery 代码来模拟旧浏览器的占位符文本。我找到了一些非常适合的人选,而且工作效果很好。然而,一个问题是解决方案倾向于输入占位符文本作为单元格值(直到用户输入)。这意味着,如果提交 html 表单时任何字段均未更改,则占位符文本将像用户输入一样提交。

有没有 jQuery 占位符解决方案可以解决这个问题?

干杯

I would like to use jQuery code to simulate placeholder text for old browsers. I have found a number that are great candidates, and work well. However, one issue is that the solutions tend to input the placeholder text as the cell value (until user input). This means that if an html form is submitted with any fields unchanged, then the placeholder text is submitted as if it is user input.

Are there any jQuery placeholder solutions that solve this?

Cheers

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

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

发布评论

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

评论(3

游魂 2025-01-04 03:48:24

我使用 jquery 占位符。你应该尝试一下

https://github.com/prantor19/jquery-placeholder

I use jquery placeholder . U should try it

https://github.com/prantor19/jquery-placeholder

镜花水月 2025-01-04 03:48:24

在发送表单之前检查占位符值是否存在并将其删除:

$('form').submit(function(){
   if($('#someinput').val() == 'placeholder value') {
     $('#someinput').val('');
   }
});

Check if placeholder value is present before form is send and remove it:

$('form').submit(function(){
   if($('#someinput').val() == 'placeholder value') {
     $('#someinput').val('');
   }
});
下雨或天晴 2025-01-04 03:48:24

就在我的脑海中,像这个(jsfiddle)这样的东西怎么样?

Just off the top of my head, what about something like this (jsfiddle).

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