Создайте текстовый редактор как StackOverflow с pagedown - PullRequest
0 голосов
/ 21 октября 2018

Я хочу создать текстовый редактор, такой как StackOverflow, и с помощью редактора постраничных плагинов, здесь я попытался сделать загрузку, следуя этой статье ссылка

моя проблема в том, что моя страница застряла, и моя страница не можетнажмите где моя ошибка?и я проверил мою консоль, там нет ошибок или предупреждений, я не знаю, почему

кто-нибудь может мне помочь, пожалуйста?

спасибо

вот мой HTML-код:

<div id="insertImageDialog" title="Insert Image">
    <h4>
                                                From the web</h4>
    <p>
        <input type="text" placeholder="Enter url e.g. http://yoursite.com/image.jpg" />
    </p>
    <h4>
                                                From your computer</h4>
    <span class="loading-small"></span>
    <input type="file" name="file" id="file" />
</div>
<style type="text/css">
    .loading-small {
        width: 16px;
        height: 16px;
        display: inline-block;
    }

    #insertImageDialog {
        display: none;
        padding: 10px;
    }

    #insertImageDialog h4 {
        margin-bottom: 10px;
    }

    #insertImageDialog input[type=text] {
        width: 260px;
    }

    #insertImageDialog .loading-small {
        display: none;
        float: left;
        padding-right: 5px;
    }
</style>

вот мой код JavaScript

if ($('#wmd-input').length > 0) {
    var converter = new Markdown.Converter();
    var help = function () { window.open('http://stackoverflow.com/editing-help'); }
    var editor = new Markdown.Editor(converter, null, { handler: help });

    var $dialog = $('#insertImageDialog').dialog({ 
        autoOpen: false,
        closeOnEscape: false,
        open: function(event, ui) { $(".ui-dialog-titlebar-close").hide(); }
    });

    var $loader = $('span.loading-small', $dialog);
    var $url = $('input[type=text]', $dialog);
    var $file = $('input[type=file]', $dialog);

    editor.hooks.set('insertImageDialog', function(callback) {

        // dialog functions
        var dialogInsertClick = function() {                                      
            callback($url.val().length > 0 ? $url.val() : null);
            dialogClose();
        };

        var dialogCancelClick = function() {
            dialogClose();
            callback(null);
        };

        var dialogClose = function() {
            // clean up inputs
            $url.val('');
            $file.val('');
            $dialog.dialog('close');
        };

        // set up dialog button handlers
        $dialog.dialog( 'option', 'buttons', { 
            'Insert': dialogInsertClick, 
            'Cancel': dialogCancelClick 
        });

        var uploadStart = function() {
            $loader.show();
        };

        var uploadComplete = function(response) {
            $loader.hide();
            if (response.success) {
                callback(response.imagePath);
                dialogClose();
            } else {
                alert(response.message);
                $file.val('');
            }
        };

        // upload
        $file.unbind('change').ajaxfileupload({
            action: $file.attr('data-action'),
            onStart: uploadStart,
            onComplete: uploadComplete
        });

        // open the dialog
        $dialog.dialog('open');

        return true; // tell the editor that we'll take care of getting the image url
    });

    editor.run();
}

enter image description here

...