我有javascript来显示和隐藏我页面的各个部分:
function showCustomer(str) {
// remove white space from the name entered on the search screen
str = str.replace(" ", "%20");
var xmlhttp;
if (str == "") {
document.getElementById("txtHint").innerHTML = "No records found";
return;
}
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
} else {
// code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("GET", "get_customer.asp?q=" + str, true);
xmlhttp.send();
}
function enable_submit() {
document.getElementById("id_simplesearch_submit").style.visibility = "visible";
document.getElementById("autocomplete-search").reset();
document.getElementById("txtHint").style.display = "none";
document.getElementById("results").style.visibility = "visible";
}
function disable_submit() {
document.getElementById("id_simplesearch_submit").style.visibility = "hidden";
document.getElementById("id_simplesearch").reset();
document.getElementById("txtHint").style.visibility = "visible";
document.getElementById("results").style.display = "none";
}
我有一个带
的文本框onkeyup="showCustomer(this.value)"
和
onfocus="disable_submit()"
和定义为
的表单 <div class="commandspace">
<form id="id_simplesearch" name="simplesearch" method="post" action="index.asp">
<div class="simplesearch"><label for="forename">Forename</label><input type="text" id="id_forename" name="forename" onfocus="enable_submit()" /></div>
<div class="simplesearch"><label for="surname">Surname</label><input type="text" id="id_surname" name="surname" onfocus="enable_submit()" /></div>
<div class="simplesearch"><label for="unit">Unit/Team</label><input type="text" id="id_unit" name="unit" onfocus="enable_submit()" /></div>
<div id="simplesearchsubmit">
<div class="simplesearch">
<input class="simplesearchsubmit" type="submit" id="id_simplesearch_submit" name="search" value="Search" />
首次加载页面并开始在showCustomer搜索框中键入内容时,txtHint元素将显示并开始拉回数据。但是,如果我单击三个简单搜索框之一,然后单击返回showCustomer搜索框,则txtHint根本不会显示。
答案 0 :(得分:1)
问题出在这里(见答案评论):
function enable_submit() {
document.getElementById("id_simplesearch_submit").style.visibility = "visible";
document.getElementById("autocomplete-search").reset();
document.getElementById("txtHint").style.display = "none"; // <----- This uses display
document.getElementById("results").style.visibility = "visible";
}
function disable_submit() {
document.getElementById("id_simplesearch_submit").style.visibility = "hidden";
document.getElementById("id_simplesearch").reset();
document.getElementById("txtHint").style.visibility = "visible"; // <----- This uses visibility
document.getElementById("txtHint").style.display = "block"; // <----- This line should fix your problems.
document.getElementById("results").style.display = "none";
}
所以enable_submit
使用display隐藏元素。虽然disable_submit
尝试使用可见性来显示它。这两个样式属性不匹配。