我正在使用Wordpress Thickbox尝试重新调整用户想要选择的图像的值(当他们点击'Insert into Post'时),但是Thickbox没有关闭,只是显示为任何空白框
字段$('#office-image input#image')
存在,Firebug不会重新报告任何错误。
我不确定为什么这不起作用,所以任何帮助都是适当的。感谢。
window.send_to_editor = function(html){
var image_url = $('img', html).attr('src');
$('#office-image input#image').val(image_url);
tb_remove();
}
答案 0 :(得分:1)
tb_show('', 'media-upload.php?type=image&TB_iframe=true');
window.original_send_to_editor = window.send_to_editor;
window.send_to_editor = function (html) {
var fileInput = jQuery(fileInput_id);
if (fileInput) {
fileurl = jQuery('img', html).attr('src');
jQuery(fileInput).val(fileurl);
tb_remove();
} else {
window.original_send_to_editor(html);
}
};
我正在使用上面的脚本并且工作正常