检查是否存在按钮
我有一个.js文件,由几个.jsp页面调用。 我在这个特定的.js文件中需要做的是仅当.jsp页面中存在'save'按钮时才调用某个函数。 如何检查按钮是否存在? 目前在.js文件中,按钮指的是这种方式:$('button [id = save]')
我如何检查这个按钮是否存在? 希望有人能提供建议。 谢谢。
尝试这样的事情
$(document).ready(function(){
//javascript
if(document.getElementById('save')){
//your code goes here
}
//jquery
if($('#save').length){
//your code goes here
}
});
你可以这样做:
if($('#save').length > 0){
// Button exists
} else {
// Button is not present in the DOM yet
}
链接地址: http://www.djcxy.com/p/83697.html