占位符 - Operamobile 不支持 - Jquerymobile

发布于 2024-10-12 22:43:55 字数 89 浏览 2 评论 0原文

文本框占位符在OperaMobile10.0中不支持。但它在 safari 中工作得很好。怎么解决这个问题呢?

请帮我。

提前致谢。

The text box place holder does not support in the OperaMobile10.0. But Its working fine with safari. How to solve this one?

Please help me.

THanks in advance.

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

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

发布评论

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

评论(2

(り薆情海 2024-10-19 22:43:55

那是浏览器的问题。 placeholder属性是一个HTML5属性,最新版本的Internet Explorer 9也不支持该属性。

That's a problem with the browser. The attribute placeholderis a HTML5 attribute, which is also not supported by Internet Explorer 9 in the latest version.

不疑不惑不回忆 2024-10-19 22:43:55
$(document).ready(function(){ 
  $('input[type=text]').focus(function(){ 
    if($(this).val() == $(this).attr('defaultValue'))
    {
      $(this).val('');
    }
  });

  $('input[type=text]').blur(function(){
    if($(this).val() == '')
    {
      $(this).val($(this).attr('defaultValue'));
    } 
  });
}); 

http://pinoytech.org/question/4595584 /如何-i-改进-这个基本-jquery-代码

$(document).ready(function(){ 
  $('input[type=text]').focus(function(){ 
    if($(this).val() == $(this).attr('defaultValue'))
    {
      $(this).val('');
    }
  });

  $('input[type=text]').blur(function(){
    if($(this).val() == '')
    {
      $(this).val($(this).attr('defaultValue'));
    } 
  });
}); 

http://pinoytech.org/question/4595584/how-can-i-improve-this-basic-jquery-code

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