Wordpress和类似Joomla的搜索输入(删除焦点上的默认值)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress和类似Joomla的搜索输入(删除焦点上的默认值)相关的知识,希望对你有一定的参考价值。

  1. var $searchInput = $('#search-input'),
  2. defaultSearchInputValue = $searchInput.attr('value');
  3.  
  4. $searchInput
  5. .focus(function()
  6. {
  7. if($(this).attr('value') == defaultSearchInputValue) $(this).attr('value', '');
  8. })
  9. .blur(function()
  10. {
  11. if($(this).attr('value') == '') $(this).attr('value', defaultSearchInputValue);
  12. });
  13.  
  14. // html
  15. <input type="text" id="search-input" value="Search" />

以上是关于Wordpress和类似Joomla的搜索输入(删除焦点上的默认值)的主要内容,如果未能解决你的问题,请参考以下文章

Joomla Extension根据搜索的关键字提供个性化内容

如何将 Joomla K2 迁移到 Wordpress

如何将项目从 K2 转移到 Joomla 文章或 wordpress ?啥是最明智的选择?

TYPO3 与其他系统 Drupal、Wordpress、Joomla [关闭]

如何在 wordpress 中使用 LIKE 搜索类别名称的帖子?

Wordpress 在从 url 获取参数的页面加载上使用 ajax