Pagina 1 di 2 1 2 ultimoultimo
Visualizzazione dei risultati da 1 a 10 su 11

Discussione: editor html

  1. #1
    Utente di HTML.it L'avatar di satoshi
    Registrato dal
    May 2002
    Messaggi
    217

    editor html

    salve sto cercandodi realizzare un editor html e ci sono riuscito
    ora nel textarea dove preparo il corpo del mio testo vorrei che quando scrivo il testo vorrei visualizzare il contenuto senza codice html si puo' fare?

    come per frontpage c'e' la modalita' html ed anteprima

  2. #2
    Senza codice HTML ... oppure con l'HTML interpretato? :quipy:
    Fermi o spacco tutto! ........
    Mi scusi perchè vuole spaccare tutto??
    .........Perchè si.

  3. #3
    Utente di HTML.it L'avatar di satoshi
    Registrato dal
    May 2002
    Messaggi
    217
    la seconda opzione

  4. #4

  5. #5
    io qualche problema con questo script mi potreste dare una mano???
    quando vado a mettere il codice nel html non me lo pubblica nel text area cosa posso aver dimenticato

    www.sun-telefonia.it/textareapro/test.html
    G|aCoM|No

  6. #6

  7. #7
    il codice lo puoi vedere su www.sun-telefonia.it/textareapro/readme.html

    cmq eccolo qua


    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>

    <head>
    <title>WYSIWYG Editor 1.0</title>

    <script language="Javascript1.2">
    //Directory must end with a '/'
    //Examples:
    // AK_editor_url = "TextAreaPro/";

    AK_editor_url = "TextAreaPro/test.htm";
    document.write('<scr' + 'ipt src="' + AK_editor_url+ 'wysiwyg.js" language="Javascript1.2"></scr' + 'ipt>');
    </script>
    </head>

    <body text="#000000" bgcolor="#FFFFFF">
    <form>
    <textarea cols="90" rows="20" name="TextArea">
    <font size="+1" color="#0000ff">TESTING</font> <<<<<<<<<<<<<<<<<<<<<<<<<< Default Text
    </textarea>
    <script language="JavaScript">
    //comment any button that you want to hide
    var AK_DisplayedButtons = Array(
    'FontName',
    'FontSize',
    'SelectAll',
    'Delete',
    'Cut',
    'Copy',
    'Paste',
    'SaveAs',
    'Print',
    'Separator',
    'Bold',
    'Italic',
    'Underline',
    'Strikethrough',
    'Separator',
    'JustifyLeft',
    'JustifyCenter',
    'JustifyRight',
    'JustifyFull',
    'Separator',
    'InsertOrderedList',
    'InsertUnorderedList',
    'Outdent',
    'Indent',
    'Separator',
    'SuperScript',
    'SubScript',
    'Separator',
    'InsertHorizontalRule',
    'CreateLink',
    'Unlink',
    'Image',
    'Table',
    'SpecialChars',
    'Separator',
    'Forecolor',
    //'Backcolor',
    'Separator',
    //'Date',
    'ChangeMode',
    'Separator',
    'Help' //the last one has NO comma
    );
    var AK_width = 600;
    var AK_height = 300;

    // All fields are optional. Place "null" where you don't want to specify.
    //ak_wysiwyg_generator(width, height, "TextAreaName", DisplayedButtonList);
    ak_wysiwyg_generator(AK_width, AK_height, "TextArea", AK_DisplayedButtons);

    //Examples:
    // ak_wysiwyg_generator(null, null, "MyTextAreaName", AK_DisplayedButtons);
    // ak_wysiwyg_generator(AK_width, AK_height, null, AK_DisplayedButtons);
    // ak_wysiwyg_generator(AK_width, AK_height, "MyTextAreaName", null);

    // It can be no parameter at all
    // ak_wysiwyg_generator();
    </script>

    <input type="Submit">
    </form>
    <form name="form1" method="post" action="">
    <textarea name="textarea"></textarea>
    </form>


    </p>
    </body>
    </html>
    G|aCoM|No

  8. #8
    biblo mi puoi aiutare???????
    G|aCoM|No

  9. #9
    ti devi accertare di due cose:

    1) che nell'HEAD della pagina ci sia il richiamo dello script:
    codice:
    <script language="Javascript1.2"><!-- // load htmlarea
    _editor_url = "htmlarea/";                     // URL to htmlarea files
    var win_ie_ver = parseFloat(navigator.appVersion.split("MSIE")[1]);
    if (navigator.userAgent.indexOf('Mac')        >= 0) { win_ie_ver = 0; }
    if (navigator.userAgent.indexOf('Windows CE') >= 0) { win_ie_ver = 0; }
    if (navigator.userAgent.indexOf('Opera')      >= 0) { win_ie_ver = 0; }
    if (win_ie_ver >= 5.5) {
     document.write('<scr' + 'ipt src="' +_editor_url+ 'editor.js"');
     document.write(' language="Javascript1.2"></scr' + 'ipt>');  
    } else { document.write('<center class="nero18">per utilizzare l\'editor html visuale e necessario "Internet Explorer 5.5</center>"'); }
    // --></script>
    2) Che oltr al text are aggiungi lo script per trasfiìormarlo in editor:

    codice:
    <textarea name='testo' rows="10"></textarea>
    <script language="JavaScript1.2" defer>
    editor_generate('testo');
    </script>

  10. #10

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.