如何检查一个div是否存在jquery,以及它是否无效
这个问题在这里已经有了答案:
检查一个jQuery对象的长度属性
if($('div.errormsg').length==0)
{
//Not exists, so redirect
//window.location.href='newurl';
}
改变这个:
if (document.getElementById('.errormsg')) {
对此:
if (document.getElementsByClassName('errormsg').length) {
document.getElementsByClassName docs @ MDN
您可以使用.length
属性来检查元素/元素的存在性:
if(!$('.errormsg ').length){//does ot exist
//redirect
}
链接地址: http://www.djcxy.com/p/14687.html
上一篇: How to check that a div exists jquery and if it does do nothing