响应式文件管理器回调函数输入字段文本
Posted
技术标签:
【中文标题】响应式文件管理器回调函数输入字段文本【英文标题】:Responsive filemanager callback function input field text 【发布时间】:2020-03-09 07:43:34 【问题描述】:我正在尝试将从响应式文件管理器中选择的值添加到输入文本字段,但是一旦我选择了注意发生的值,该值就不会进入输入文本字段。
我在关注documentation
这是我的代码:
<script>
function BrowseServer(id)
alert(id); // configuration
fileBrowserlink = "../admin/ckeditor/filemanager/dialog.php?type=2&editor=ckeditor&fldr=&field_id=" + id;
window.open(fileBrowserlink,'pdwfilebrowser', 'width=1000,height=650,scrollbars=no,toolbar=no,location=no');
</script>
<input type="text" name="configuration" value="" onclick="BrowseServer('configuration');" id="configuration">
感谢您的帮助。
谢谢。
【问题讨论】:
【参考方案1】:无法按照文档页面在窗口中打开文件管理器“可以使用普通弹窗、Bootstrap modal、iframe、FancyBox iframe、Lightbox iframe打开文件管理器...”
尝试使用以下方法:
<div class="input-append">
<input id="configuration" type="text" value="">
<a href="javascript:open_popup('../admin/ckeditor/filemanager/dialog.php?type=2&editor=ckeditor&fldr=&field_id=configuration')" class="btn" type="button">Select</a>
</div>
还可以查看演示页面 here 背后的代码以获取更多示例。我把上面的代码sn-p基于这个代码。
祝你好运!
【讨论】:
感谢您的帮助。我使用此代码解决了问题<input type="text" name="configuration" value="" onclick="window.open('/ckeditor/filemanager/dialog.php?type=1&amp;popup=1&amp;relative_url=1&amp;field_id=configuration','pdwfilebrowser','width=1000,height=650,scrollbars=no,toolbar=no,location=no');" id="configuration">
以上是关于响应式文件管理器回调函数输入字段文本的主要内容,如果未能解决你的问题,请参考以下文章