سؤال

As of Dart M8 the Element.document field has been removed. In a rich editor (as in Chris Buckett's editor example) we used to do the following for changing the weight of some text to bold:

var el = query("#editme");
el.contentEditable = "true";
el.document.execCommand("bold",true,"");

How do you call execCommand on a element with the contenteditable attribute set to true?

هل كانت مفيدة؟

المحلول

Node.document was renamed to Node.ownerDocument

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top