是否可以使用jQuery live事件从DOM中删除元素删除?
我需要类似的东西:
mysql -u root -p database_name < /opt/database.sql
mysql -u root -p database=database_name </opt/database.sql
但它不起作用:(
答案 0 :(得分:4)
也许你正在寻找的东西:
$.fn.customRemove = function () {
$(this).remove();
console.log('Element removed.');
};
$('.selector').customRemove(); // you will get the log automatically