Olá, peguei um script de editor de texto em javascript, esta funcionando legal, mas queria fazer uma alteracao...
Colocar um botao para submeter o formulario, creio q devo utilizar um textarea ao invés do iframe...alguém pode me ajudar a fazer isso? não consegui!!!
javascript
function Iniciar() {
editor.document.designMode = 'On';
}
function recortar() {
editor.document.execCommand('cut', false, null);
}
function copiar() {
editor.document.execCommand('copy', false, null);
}
function colar() {
editor.document.execCommand('paste', false, null);
}
function desfazer() {
editor.document.execCommand('undo', false, null);
}
function refazer() {
editor.document.execCommand('redo', false, null);
}
function negrito() {
editor.document.execCommand('bold', false, null);
}
function italico() {
editor.document.execCommand('italic', false, null);
}
function sublinhado() {
editor.document.execCommand('underline', false, null);
}
function alinharEsquerda() {
editor.document.execCommand('justifyleft', false, null);
}
function centralizado() {
editor.document.execCommand('justifycenter', false, null);
}
function alinharDireita() {
editor.document.execCommand('justifyright', false, null);
}
function justificado() {
editor.document.execCommand('justifyfull', false, null);
}
function numeracao() {
editor.document.execCommand('insertorderedlist', false, null);
}
function marcadores() {
editor.document.execCommand('insertunorderedlist', false, null);
}
function fonte(fonte) {
if(fonte != '')
editor.document.execCommand('fontname', false, fonte);
}
function tamanho(tamanho) {
if(tamanho != '')
editor.document.execCommand('fontsize', false, tamanho);
}
Pergunta
Guest dandao
Olá, peguei um script de editor de texto em javascript, esta funcionando legal, mas queria fazer uma alteracao...
Colocar um botao para submeter o formulario, creio q devo utilizar um textarea ao invés do iframe...alguém pode me ajudar a fazer isso? não consegui!!!
javascript
index.htmlLink para o comentário
Compartilhar em outros sites
5 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.