我可以毫无问题地进行编辑,但Ctrl + B不起作用。是否有跨浏览器解决方案?
我不想切换到可编辑的iframe
感谢
答案 0 :(得分:0)
我找到了最简单的方法,只是做了一个可编辑的,而ctrl + b的工作让我抽象地实现了它跨浏览器
<html>
<body>
<script src="jquery-1.9.0.min.js"></script>
<script>
$(document).ready(function() {
$('#button').click(function() {
alert($("#editable").html());
});
});
</script>
<div id="editable" contenteditable="true" style="width:400px;height:400px;border:1px;border-style:solid;margin:3px;">
</div>
<button id="button">focus</button>
</body>
</html>