使用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.
$(function() { var theSearchBox = $('#searchBoxOuter td.ms-sbcell input'); var defaultSearchText = "Search this site"; var preferredSearchText = "Search my custom site name"; theSearchBox.val(preferredSearchText); //replace the text initially theSearchBox.blur(function() { //replace the text when the search box loses focus and no value entered if ($(this).val().indexOf(defaultSearchText) > -1) $(this).val(preferredSearchText); }); });
以上是关于使用JQuery更改SharePoint 2010中的默认搜索框文本的主要内容,如果未能解决你的问题,请参考以下文章
Sharepoint 2010 在 jquery/javascript 中捕获 webpart 刷新
如何在 Sharepoint 2010 中使用 HTTP 处理程序发出 jQuery AJAX 请求?
如何在 SharePoint WebPart 上使用 jQuery 响应 RadioButton 的更改事件?