我希望能在ff下点到那个链接
其实就是希望但a标签的时候
input不失去焦点   该如何写...............
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>
 
<body>
<input id="ss" type="text" />
<div id='xx' style="height:25px; width:200px; background-color:#0FF;" ><a href="http://www.baidu.com" style="-moz-user-select: none" UNSELECTABLE="ON">sfasdf</a></div>
<script>
window.onload = function(){
document.getElementById('ss').focus();
document.getElementById('ss').onblur = function(){
document.getElementById('xx').style.display = "none";
}
document.getElementById('ss').onfocus = function(){
document.getElementById('xx').style.display = "";
}
}
</script>
</body>
</html>