本文主要是介绍页面中存在标签 name=aa 同时存在js函数aa,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<?xml version="1.0" encoding="UTF-8" ?>
<%@ include file="/page/common/taglib.jsp" %>
<!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>Insert title here</title>
<script type="text/javascript">
function aa(){
alert('aa');
}
</script>
</head>
<body>
<p>asdf</p>
<p>hehe</p>
<p>didi</p>
<p>enen</p>
<P>upper</P>
<P>yiya</P>
<img src="/kimages/login3.jpg" ALt="tupitjyjyan------------" name="aa">
<input checked/>
<INPUT CHECKED/>
You & me -You & me
<BUTTON onclick="aa();">ad</BUTTON>
<button οnclick="aa();">aa</button>
因为<img name="aa"/>存在名称为aa的属性,同时页面中也存在aa的函数aa();
在浏览器中既然不能调用aa()函数,报错:对象不支持此属性或方法
这篇关于页面中存在标签 name=aa 同时存在js函数aa的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!