我已经设置了这个非常简单的小提琴,如果有人能指出它为什么不起作用,我会非常感激,现在一直在努力解决这个问题。
这是代码:
$('input[type=file]').change(function () {
if ($(this).val()) {
alert('This thing works.');
$(this).append('<input type="file" name="test">');
} else {
$(this).remove();
}
});