-4
function popup() 
{
    alert (
        "I will tell the truth. I will write deliberately and with accuracy."
        + " I will acknowledge and correct mistakes promptly.  I will preserve"
        + " the original post, using notations to show where I have made changes"
        + " so as to maintain the integrity of my publishing. I will never delete"
        + " a post. I will not delete comments unless they are spam or off-topic."
        + " I will reply to emails and comments when appropriate, and do so promptly."
        + " I will strive for high quality with every post – including basic spellchecking."
        + " I will stay on topic. I will disagree with other opinions respectfully."
        + " I will link to online references and original source materials directly."
        + " I will disclose conflicts of interest. I will keep private issues and topics" 
        + " private, since discussing private issues would jeopardize my personal and work"
        + " relationships.");
} 
4

2 に答える 2

1

でできることは 1 つだけですalert()。追加\nすると、テキストが改行されます。

alert ( "I will tell the truth. \n I will write deliberately and with accuracy. \n I will acknowledge and correct mistakes promptly.......")

HTML とスタイルを適用する場合は、DHTML ボックス (ライトボックス、ファンシー ボックスなど) を使用します。

于 2012-10-11T11:32:52.953 に答える
1

これを使用できます:

alert("私は真実を伝えます。意図的に正確に書きます。誤りを認め、速やかに修正します。元の投稿を保存し、変更箇所を示す表記を使用して、公開の完全性を維持します。 . 投稿を削除することはありません. コメントがスパムまたはトピックから外れていない限り、コメントを削除しません. 必要に応じてメールやコメントに返信します, 迅速に返信します. 基本的なスペルチェックを含め、すべての投稿で高品質を目指します. . 私は話題にとどまります. 私は他の意見には丁重に反対します. 私はオンラインの参照と元のソース資料に直接リンクします. 私は利益相反を開示します. 私は私的な問題とトピックを非公開にします.個人的および仕事上の関係。".split('.')。join('.\n'));

各ステートメントの後に手動で改行を入れるプロセスは含まれません。上記のコードは、このアクション自体を実行します。

于 2012-10-11T11:36:30.797 に答える