我使用以下代码在帖子或页面管理部分的多个mextabox中上传。适用于元盒,但会打断TinyMCE插入图像。我想知道我怎样才能做到这一点,而又不致于打破僵局。当我覆盖窗口时,问题就出现了。send\\u to\\u editor函数。
jQuery(document).ready(function() {
jQuery(\'.st_upload_button\').click(function() {
targetfield = jQuery(this).prev(\'.upload-url\');
tb_show(\'\', \'media-upload.php?type=image&TB_iframe=true\');
return false;
});
window.send_to_editor = function(html) {
imgurl = jQuery(\'img\',html).attr(\'src\');
jQuery(targetfield).val(imgurl);
tb_remove();
}
});
一种可能的解决方案是隐藏“插入帖子”按钮,顺便说一句,该按钮在元数据库中没有语义,并放置一个新按钮,如“选择图像”,然后编写一个函数,将img o attach url分配给输入。我该怎么做?还有什么你推荐的吗?
提前谢谢。