$('#uploadVideo').change(function(event) {
var video = this.files[0];
var videoUrl = window.URL.createObjectURL(video);
$('.ql-editor').append('<video><source src="'+videoUrl+'"></video>');
});
<input type="file" id="uploadVideo" accept="video/*"></div>
<div class="ql-editor" contenteditable="true"></div>
更新:我已經可以取得預覽網址了
但是我發現丟入 <video>XXX網址</video>
不行。只會出現 <br>
<strong>Strong text!</strong>
卻可以
請問要怎麼讓整段 <video>
標籤進入?
甚至我直接丟進去 ql-editor
可以直接顯示影片?(直接啟用HTML)?
這樣…
$('.ql-editor').html('<video><source src="'+videoUrl+'"></video>');