本文實例講述了js實作文字方塊選取的方法。分享給大家供大家參考。具體如下:
這段javascript程式碼可解決文字方塊獲得焦點,即使得文字方塊的內容被選取。
<!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>select文件</title> <script language="javascript" type="text/javascript"> function getFocus() { document.getElementById("test").select(); } </script> </head> <body> <form id="f1"> <input type="text" id="test" name="test" value="你好嗎?" onfocus="getFocus();"/> </form> </body> </html>
希望本文所述對大家的javascript程式設計有所幫助。