使用JQuery更改SharePoint 2010中的默认搜索框文本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用JQuery更改SharePoint 2010中的默认搜索框文本相关的知识,希望对你有一定的参考价值。

Use whatever is needed to select the input box. $('#searchBoxOuter td.ms-sbcell input') reflects some custom master page html I have so I used that.
  1. $(function() {
  2.  
  3. var theSearchBox = $('#searchBoxOuter td.ms-sbcell input');
  4. var defaultSearchText = "Search this site";
  5. var preferredSearchText = "Search my custom site name";
  6.  
  7. theSearchBox.val(preferredSearchText); //replace the text initially
  8.  
  9. theSearchBox.blur(function() { //replace the text when the search box loses focus and no value entered
  10. if ($(this).val().indexOf(defaultSearchText) > -1)
  11. $(this).val(preferredSearchText);
  12.  
  13. });
  14.  
  15.  
  16. });

以上是关于使用JQuery更改SharePoint 2010中的默认搜索框文本的主要内容,如果未能解决你的问题,请参考以下文章

Sharepoint 2010 在 jquery/javascript 中捕获 webpart 刷新

如何在 Sharepoint 2010 中使用 HTTP 处理程序发出 jQuery AJAX 请求?

更改sharepoint 2010模板的背景颜色

如何在 SharePoint WebPart 上使用 jQuery 响应 RadioButton 的更改事件?

Sharepoint 2010 - 通过 XSL 更改列表名称和列标题显示名称

Sharepoint 2010 内容按查询 Web 部件(ddwrt:格式日期)