首页 > 代码库 > 异常2
异常2
<!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> <title>范例5-14</title> </head> <body> <script language="javascript"> function btnSearch_MouseMove() { try // 将因为加并更换载图片可能出错,因此将代码将在try块中 { var btnSearch = document.getElementById( "BtnSearch" ); // 获取图片框和文本框 var SchTxt = document.getElementById( "SearchTXT" ); var oriPicSrc = http://www.mamicode.com/btnSearch.src; // 保存原来的图片 btnSearch.src = "http://www.mamicode.com/icon2.png"; SchTxt.select(); // 当鼠标移上按钮则自动选择文框中的文字 } catch( e ) { btnSearch.src=oriPicSrc; // 如果更新失败则换上原来的图片 } } function btnSearch_MouseOut() { try { var btnSearch = document.getElementById( "BtnSearch" ); var SchTxt = document.getElementById( "SearchTXT" ); var oriPicSrc =http://www.mamicode.com/ btnSearch.src; btnSearch.src = "icon1.png"; } catch( e ) { btnSearch.src=oriPicSrc; // 如果更新失败则换上原来的图片 } } </script> <div style="border-right: #cccccc 1px solid; border-top: #cccccc 1px solid; left: 153px; border-left: #cccccc 1px solid; width: 235px; border-bottom: #cccccc 1px solid; position: absolute; top: 66px; height: 74px; background-color: #ccffff"> <input id="SearchTXT" type="text" style="height:14px; left: 25px; position: absolute; top: 29px;" value="http://www.mamicode.com/搜索关键词"/> <img src="http://www.mamicode.com/icon1.png" id="BtnSearch" style="width: 24px; height: 24px; left: 187px; position: absolute; top: 27px;" onm ouseout="return btnSearch_MouseOut()" onm ouseover="return btnSearch_MouseMove()"/> </div> </body> </html>
out
异常2
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。