質問

私はドライブートストラップモードに改行を追加しようとしています。

これは、メッセージをモーダルショーコードに送信するハイパーリンクテンプレートコードです。

<a href="{% url achievement_details_delete achievement_detail.id %}" delete-confirm="Are you sure you want to DELETE the selected record? <br /><br />This action will permanently remove the record.">Delete</a>
.

これは私のjQueryブートストラップモーダルコードです:

$(document).ready(function() {

    //START: Delete code.
    $('a[delete-confirm]').click(function(ev) {

        var href = $(this).attr('href');

        if (!$('#deleteConfirmModal').length) {

            $('body').append('<div id="deleteConfirmModal" class="modal modal-confirm-max-width" role="dialog" aria-labelledby="deleteConfirmLabel" aria-hidden="true"><div class="modal-header"><button type="button" class="close" data-dismiss="modal" aria-hidden="true">X</button><h4 class="modal-title" id="deleteConfirmLabel">{% trans "Delete" %} - {{ resume_details_trans }}</h4></div><div class="modal-body"></div><div class="modal-footer"><button class="btn" data-dismiss="modal" aria-hidden="true">{% trans "Cancel" %}</button>&nbsp;&nbsp;<a class="btn-u btn-u-red" id="deleteConfirmOK" onclick="showProgressAnimation();">{% trans "Delete" %}</a></div></div>');

        }

        $('#deleteConfirmModal').find('.modal-body').text($(this).attr('delete-confirm'));

        $('#deleteConfirmOK').attr('href', href);

        $('#deleteConfirmModal').modal({show:true});

        return false;

    });
    //FINISH: Delete code.
});
.

役に立ちましたか?

解決

レコードを削除するためにボタンにこれを追加します。

<a href="url"
   delete-confirm="Your Message Here!!<br /><br /><span class='confirm_delete_warning_red_bold'>You can even add in css to highlight specific text - Are you sure?</span>"
>
    Delete
</a>
.

とjQueryコードで.textを.htmlに変更します。テキストはテキストをレンダリングし、.htmlはHTMLとして機能し、SPANタグにLine BreaksとCSSを表示します。

 $('#deleteConfirmModal').find('.modal-body').html($(this).attr('delete-confirm'));
.

これはあなたのコードのために機能します。ただ 'and "(シングルとダブルトークマーク)の使用を見てください。それらを混ぜないでください。

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top