Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我现在所拥有的:
http://jsfiddle.net/QSDTV/1/
有没有一种方法可以在文本区域中键入 HTML 代码(包括标签和标签等>,当我单击底部的“更新内容”按钮时,它会在该 iFrame 中呈现我的 html 代码?或者也许它应该显示在 DIV 中?我不知道。
谢谢你的时间!
用这个代码试试这个。
http://jsfiddle.net/QSDTV/2/
$(document).ready(function() { $("#update").click(function() { $("#content").html($("#editor").val()) }) })