在按钮点击的php filterinput中输入文本的代码...无效。可能吗?这个想法是让用户点击一个按钮(或链接 - 我将在稍后重新格式化按钮),它将填充一个jquery sharepoint过滤器。 Jquery过滤器自动过滤共享点列表...但我想要一个链接来执行此操作(没有回发)...我能想出的最佳解决方案是html表单webpart和一个jquery脚本自动过滤列表onkeyup。但我希望页面上的链接将文本输入到过滤器中...(参见代码)无法正常工作
<!DOCTYPE html>
<html>
<head>
<script>
function changeText() {
x = document.getElementById("filterInput");
x.options[x.selectedIndex].text = "Melon";
}
</script>
</head>
<body>
<input type="button" onclick="changeText()" value="Test">
<input id="filterInput" type="text" name="search" size="80" style="color:silver" value="Click here and start typing your search criteria..." onfocus="if(this.value == 'Click here and start typing your search criteria...'){this.value='';}">
</body>
</html>