Wordpress和类似Joomla的搜索输入(删除焦点上的默认值)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress和类似Joomla的搜索输入(删除焦点上的默认值)相关的知识,希望对你有一定的参考价值。
// javascript var $searchInput = $('#search-input'), defaultSearchInputValue = $searchInput.attr('value'); $searchInput .focus(function() { if($(this).attr('value') == defaultSearchInputValue) $(this).attr('value', ''); }) .blur(function() { if($(this).attr('value') == '') $(this).attr('value', defaultSearchInputValue); }); // html <input type="text" id="search-input" value="Search" />
以上是关于Wordpress和类似Joomla的搜索输入(删除焦点上的默认值)的主要内容,如果未能解决你的问题,请参考以下文章
Joomla Extension根据搜索的关键字提供个性化内容
如何将项目从 K2 转移到 Joomla 文章或 wordpress ?啥是最明智的选择?
TYPO3 与其他系统 Drupal、Wordpress、Joomla [关闭]