我在这里尝试检查输入文本框是否为空。如果它是空的,我想要从引导程序到弹出窗口的插件,但它不起作用。我厌倦了很多次,但它要么提供其他价值。
$("input").blur(function() {
var check =$(this).closest('tr').find('input');
check.each(function(){
if (check.value==""){
check.popover();
end();
}
});