我正在使用wordpress自定义帖子,在这个自定义帖子中我想用wp_attachment添加很多照片我在这里遇到的问题是,当我点击addmore什么都没发生时,就像wordpress忽略了我的jquery文件一样 我的代码
<div class="col-sm-9">
<input type="file" name="aduploadfiles[]" id="uploadfiles2" size="35" class="form-control" />
<input type="button" id="add_more2" class="upload" value="add more photo"/>
</div>
这是使用
的javascript var abc = 0; //Declaring and defining global increement variable
$(document).ready(function() {
//To add new input file field dynamically, on click of "Add More Files" button below function will be executed
$('#add_more2').click(function() {
$(this).before($("<div/>", {id: 'uploadfiles2'}).fadeIn('slow').append(
$("<input/>", {name: 'aduploadfiles[]', type: 'file', id: 'aduploadfiles',size:'35', class:'form-control'})
));
});
//following function will executes on change event of file input to select different file
$('body').on('change', '#file', function(){
if (this.files && this.files[0]) {
abc += 1; //increementing global variable by 1
var z = abc - 1;
var x = $(this).parent().find('#previewimg' + z).remove();
$(this).before("<div id='abcd"+ abc +"' class='abcd'><img id='previewimg" + abc + "' src=''/></div>");
var reader = new FileReader();
reader.onload = imageIsLoaded;
reader.readAsDataURL(this.files[0]);
$(this).hide();
$("#abcd"+ abc).append($("<img/>", {id: 'img', src: 'x.png', alt: 'delete'}).click(function() {
$(this).parent().parent().remove();
}));
}
});
//To preview image
function imageIsLoaded(e) {
$('#previewimg' + abc).attr('src', e.target.result);
};
$('#upload').click(function(e) {
var name = $(":file").val();
if (!name)
{
alert("First Image Must Be Selected");
e.preventDefault();
}
});
});
当我在wordpress页面中尝试它时工作正常但在仪表板中即使我的javascript已加载也无法工作
答案 0 :(得分:3)
有几个问题:
$
不可用。使用jQuery
在WordPress中,jQuery以兼容模式运行,即$
快捷方式为not available。您可以通过在jQuery
方法中捕获ready
作为函数参数来解决此问题,如下所示:
jQuery(document).ready(function($) {
ready
回调中的其余代码可以继续使用$
。
您在jQuery选择器中提到了错误的ID:您的文件上传元素的标识为uploadfiles2
,而不是file
。所以改变:
$('body').on('change', '#file', function(){
要:
$('body').on('change', '[name="aduploadfiles[]"]', function(){
id
值每次添加新按钮时,都会创建一个div
id
uploadfiles2
:但该ID已存在。在HTML中,id值必须是唯一的,否则会发生意外情况。
您动态创建的所有元素都应该获得动态创建的(不同的)id值(或根本没有id)。