我将以下内容(从cdn网站复制)放入文件中,然后在FireFox中打开它显示textarea而不是ckeditor。这是预期的行为吗?
<!DOCTYPE html>
<html>
<head>
<script src="//cdn.ckeditor.com/4.5.7/standard/ckeditor.js"></script>
</head>
<body>
<textarea name="editor1"></textarea>
<script>
CKEDITOR.replace( 'editor1' );
</script>
</body>
</html>