10 lines
304 B
JavaScript
10 lines
304 B
JavaScript
|
|
$(document).ready(function(){
|
||
|
|
$('.add, .delete').click(function(e) {
|
||
|
|
var li = $(this).parent("li");
|
||
|
|
$.post('/index/' + li.data("file"), {'action': $(this).attr('class'), 'kw': li.data("kw"), 'list': li.data("list")}, function(d) {
|
||
|
|
if(d === 'ok') {
|
||
|
|
location.reload();
|
||
|
|
}
|
||
|
|
});
|
||
|
|
});
|
||
|
|
});
|