时间:2020-10-14 10:03:48 | 栏目: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=gb2312" /> <title>无标题文档</title> </head> <body> <input type="text" value="我中奖了,中了一个亿" id="mytext" /> <script language="javascript"> /* * 1、获取id为mytext的value属性的值 * 2、获取id为mytext的tyoe属性的值 */ var txtElement = document.getElementById('mytext'); //我们可以通过对象.属性的方式访问其属性。 alert(txtElement.value); alert(txtElement.type); </script> </body> </html>