有人可以帮我解决这个问题吗?
html:
<a href="#" class="form-control input-sm" data-original-title="Uploaded Files:" data-content="@include('uploadedFiles')">Show Files</a>
@include文件:
@foreach($apply->invoice as $invoice)
@if(str_limit($invoice['file_name'], 9,'') == 'popUpload')
<a href='{{url($site . '/pop/' . array_get($invoice, 'file_name'))}}'>
{{array_get($invoice, 'file_name')}}</a>
@else
<a href='{{url($site . '/pop/' . array_get($invoice, 'file_name'))}}' download>
{{array_get($invoice, 'file_name')}}</a>
@endif
@endforeach
我的JQuery:
var options = {
html: true,
placement: 'bottom',
};
$('a').popover(options);
$('html').on('click', function(e) {
if (typeof $(e.target).data('original-title') == 'undefined' &&
!$(e.target).parents().is('.popover.in')) {
$('[data-original-title]').popover('hide');
}
});
它应该做的是列出所有上载的文件,并且确实如此。问题是我无法在HTML文件中放置任何“按钮”,“输入”等。例如,我想将“删除”按钮放在每个列出的文件附近,并且不会显示。谁能告诉我发生了什么事?还有一件事,“ a href”下载参数不起作用。