It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clari开发者_StackOverflow社区fying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
function changeval(){
var pr =document.getElementById('search').value;
//alert(pr);
if (pr==""){
document.getElementById('searchres').innerHTML="";
document.getElementById('pagination').innerHTML =" Search result will show here!<br/>";
}
}
This is code in googlemaps.
The above code doesn't works in windows IE.
Use temporal variables and insert a debugger; statement to see if your code can 'see' the objects you're trying to access, if exists.
精彩评论