<script>
KindEditor.ready(function(K) {
var editor = K.editor({
uploadJson : '../keditor/asp/upload_json.asp',
fileManagerJson : '../keditor/asp/file_manager_json.asp',
allowFileManager : true
});
K('#image1').click(function() {
editor.loadPlugin('image', function() {
editor.plugin.imageDialog({
imageUrl : K('#url1').val(),
clickFn : function(url, title, width, height, border, align) {
K('#url1').val(url);
editor.hideDialog();
}
});
});
});
K('#image2').click(function() {
editor.loadPlugin('image', function() {
editor.plugin.imageDialog({
imageUrl : K('#url2').val(),
clickFn : function(url, title, width, height, border, align) {
K('#url2').val(url);
editor.hideDialog();
}
});
});
});
});
</script>
<input type="text" id="url1" value="" size="80" />
<input type="button" id="image1" value="选择图片" />
<br>
<input type="text" id="url2" value="" size="80" />
<input type="button" id="image2" value="选择图片" />