如果是内联脚本的话,加上$(document).ready(function(){
//你的JS代码
});
html() 是jquery的方法,this是div,还不是jquery对象,没有html()方法,要转换一下
$(document).ready(function(){var objs=$('.disp_layer').find('div')
alert(objs.length)
objs.each(function(index){
alert(index)
alert($(this).html())
})
})
<form id="frmTmp" onsubmit="window.location.href='2.html'return false"><fieldset>
<!--失效的原因是onclick事件被监听到,立即执行了-->
<!--按钮的onclick事件改成表单(form)的onsubmit事件,返回false可以阻止表单的提交-->
<legend id="l3">登录界面</legend>
<p id="p1">用户名: <input type="text" name="txtName" class="inputtxt" pattern="^\d{11}$" required ></p>
<p id="p2">密 码: <input type="password" name="txtPws" class="inputtxt"></p>
<p class="p_center">
<input name="frmSubmit" type="submit" value="登录" class="inputbtn" />
<input name="frmReset" type="reset" value="取消" onclick="alert('取消成功')" class="inputbtn" />
</p>
</fieldset>
</form>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)