現在,當我輸入這個編輯器下面的預覽。我想做類似的事情。堆棧溢出如何做到這一點?堆棧溢出如何鏡像您輸入的內容?
4
A
回答
8
他們使用的HTML編輯器中調用WMD Markdown Editor.
1
$(function(){
// whenever the text in the editor box changes:
$("#editorTextArea").change(function(){
// add the text to the preview box below
// this certainly involves some formatting/marking up of the text
// but this is good enough for illustrative purposes
$("#previewBox").val(this.value);
});
});
+4
不能這樣工作,因爲更改事件僅在模糊事件後觸發;或者:如果內容在失去焦點後發生了變化,則更改僅會觸發。如果你想在輸入的時候更新,你幾乎不得不使用keydown事件。 – Mike
相關問題
- 1. 堆棧溢出堆棧溢出
- 2. OpenID像堆棧溢出
- 3. 堆棧溢出
- 4. 關於堆溢出或堆棧溢出的Linux內核行爲
- 5. 如何將代碼輸入到堆棧溢出查詢框?
- 6. 堆棧溢出C++
- 7. C#堆棧溢出
- 8. Malloc堆棧溢出
- 9. 堆棧溢出C++
- 10. LINQ2SQL堆棧溢出
- 11. 堆棧溢出ToArray()
- 12. C++堆棧溢出
- 13. 堆棧溢出:: regex_replace
- 14. .NET堆棧溢出?
- 15. MPMoviePlayerController堆棧溢出
- 16. ViewDragHelper堆棧溢出
- 17. Lua堆棧溢出
- 18. GinMapProvider堆棧溢出
- 19. Threading.Timer堆棧溢出
- 20. 堆棧溢出調用堆棧#timememoryfunctionlocation 10.0000143728
- 21. 堆棧搜索導致堆棧溢出
- 22. 如何解決堆棧溢出的Android
- 23. 如何讓我的堆棧溢出?
- 24. 如何溢出堆棧而不推送新的堆棧幀?
- 25. 標題消息就像堆棧溢出
- 26. htaccess重寫url像堆棧溢出
- 27. java.util.Properties.getProperty的堆棧溢出
- 28. freertos中的堆棧溢出
- 29. 堆棧溢出的原因
- 30. 堆棧溢出的Java
我很困惑。如果這屬於元或不? – erelender
...這就是爲什麼它在iPhone上吸:-) –
我不這麼認爲。它和任何其他問題一樣有效,他恰好使用StackOverflow作爲實現的例子。如果他使用過任何其他網站,則不會遷移。 – Brandon