jQuery 水印和使用 .Val()

发布于 2024-09-24 19:50:26 字数 337 浏览 7 评论 0原文

我有一个问题,因为我正在使用一个简单的水印插件,这样它就可以工作

jQuery('#selector').Watermark('Watermark text here ...');

问题是 - 当我尝试使用类似

if (jQuery('#selector').val() != "") { //do stuff }

The statements is True 的东西时,因为水印。无论如何,我是否可以以某种方式“忽略”我的 If 语句的这个水印值?

谢谢

I have a problem in that I am using a simple watermark plugin such that it works

jQuery('#selector').Watermark('Watermark text here ...');

The problem is - when I try and use something like

if (jQuery('#selector').val() != "") { //do stuff }

The statement is True because of the watermark. Is there anyway I can somehow "ignore" this watermark value for my If statement ?

Thanks

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

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

发布评论

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

评论(3

星軌x 2024-10-01 19:50:26
if (jQuery('#selector').val() != "" && jQuery('#selector').val() != "'Watermark text here ...'") { //do stuff }

这仅假设水印文本在示例中是静态的。如果没有,那么您可能需要水印文本的集合?

if (jQuery('#selector').val() != "" && jQuery('#selector').val() != "'Watermark text here ...'") { //do stuff }

This only assumes that the watermark text is static across examples. If not then you may need a collection of watermark texts?

浪荡不羁 2024-10-01 19:50:26

除了空之外,您也可以忽略水印文本:

if (jQuery('#selector').val() != "" && jQuery('#selector').val() != "your watermark text")
{
  //do stuff
}

You could ignore the watermark text as well other than empty:

if (jQuery('#selector').val() != "" && jQuery('#selector').val() != "your watermark text")
{
  //do stuff
}
紫瑟鸿黎 2024-10-01 19:50:26

类似的问题在这里:

Jquery:是否有某种方法可以使 val() 返回空字符串而不是空列表的“未定义”?

您的情况下解决方案的要点是:

if ((jQuery('#selector').not('.watermark').val()||'') != "") { //do stuff }

Similar question here:

Jquery: Is there some way to make val() return an empty string instead of 'undefined' for an empty list?

The gist of the solution in your case would be:

if ((jQuery('#selector').not('.watermark').val()||'') != "") { //do stuff }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文