display圖像或視頻我添加按鈕到我的表單像這樣我簡單的內容管理系統。我寫文章等,所以我想添加圖片和視頻也。我想使用自定義標記加入使用自定義標籤在php
function formatText (el,tagstart,tagend) {
if (el.setSelectionRange) {
el.value = el.value.substring(0,el.selectionStart) + tagstart + el.value.substring(el.selectionStart,el.selectionEnd) + tagend + el.value.substring(el.selectionEnd,el.value.length)
}
else {
var selectedText = document.selection.createRange().text;
if (selectedText != "") {
var newText = tagstart + selectedText + tagend;
document.selection.createRange().text = newText;
}
}
}
<form name="my_form">
<textarea name="my_textarea" id="mytext"></textarea><br />
<input type="button" value="IMAGE" onclick="formatText (document.getElementById('mytext'),'[IMAGE]','[/IMAGE]');" />
這是添加[IMAGE] [/ IMAGE]標籤爲我的文字區,我想表明這個標籤之間的圖像鏈接提交表單後。同樣,我想添加[VIDEO] [/ VIDEO]標籤,如果我在這些標籤之間寫入youtube鏈接,則在顯示頁面時顯示視頻。
我該怎麼做?
要顯示youtube視頻,您必須插入youtube的自定義嵌入代碼。請參閱http://support.google.com/youtube/bin/answer.py?hl=zh_CN&answer=171780。 –
如何與自定義標籤集成? – Seyhan
我不明白你的意思是自定義標籤。 –