最新回答 / weixin_慕虎5578550
hobby[i].checked="";试试
最新回答 / qq_Fighting_45
那段代码是生效了的,跳出了一个窗口。但是没有正确跳转到baidu.com,你试试把url改为https://www.baidu.com
2019-04-17
每个element都是对象,对象就可以写入属性和方法 ,因此可以在原本的element对象添加自定义属性,getAttribute可以取到任意的属性(包括自定义属性),而点方法只能取初始属性。这是我的理解
2019-04-17
function message(){
var id01=document.getElementById('01');
if(id01.value==''){
confirm("请输入密码后,再单击确定!");
}
}
<form>
密码:<input id="01" name="password" type="password" >
<input name="确定" type="button" value="确定" onmouseover='message()'/>//简单的判断
var id01=document.getElementById('01');
if(id01.value==''){
confirm("请输入密码后,再单击确定!");
}
}
<form>
密码:<input id="01" name="password" type="password" >
<input name="确定" type="button" value="确定" onmouseover='message()'/>//简单的判断
2019-04-17
document.write(mystr.indexOf("o",mystr.indexOf("o")+1));
2019-04-16
最新回答 / 毒素100
首先把<script>里的代码放到<a>后面,因为放在<head>里的js代码一般是预加载,执行过后无特殊情况下就不会再执行(解析按照先后顺序)。如果非要放在<head>里,就把<script>的代码放到window.onload=function(){ }的花括号里;“history.back();”应是“window.history.back();”。
2019-04-16
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>string对象 </title>
<script type="text/javascript">
var mystr="I love JavaScript!"
document.write(mystr.charAt(mystr.length - 1));
</script>
</head>
<body>
</body>
</html>
提交的时候显示有错误。。。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>string对象 </title>
<script type="text/javascript">
var mystr="I love JavaScript!"
document.write(mystr.charAt(mystr.length - 1));
</script>
</head>
<body>
</body>
</html>
提交的时候显示有错误。。。
2019-04-15