当前位置:编程学习 > JS >>

1)显示一个多行的输入框和一个按钮,用户可以在输入框中输入Javascript代码,点击按钮,则该代码会被执行。

 2)显示另一个输入框和按钮,用户在输入框中输入的信息会被变成文本,原样输出,而不会被执行。请用代码表示。

追问:我忘了补充一点了,这是用C#作的,那我该则么办?

答案:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=" http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script language="javascript" type="text/javascript">
// <![CDATA[

        function Button1_onclick() {
            document.writeln(document.getElementById("Text1").value);
        }

        function Button2_onclick() {
          
            document.writeln(document.getElementById("Text2").value.replace(/<(.+?)>/gi,"&lt;$1&gt;").replace(/ /gi,"&nbsp;").replace(/\n/gi,"<br>"));
        }

// ]]>
    </script>
</head>
<body>
执行:<input id="Text1" type="text" /><input id="Button1" type="button" value="button1" onclick="return Button1_onclick()" />
<br />
输出:<input id="Text2" type="text" /><input id="Button2" type="button" value="button2" onclick="return Button2_onclick()" />
</body>
</html>

自己点击button1和button2看看

上一个:1、写html代码,用javascript控制某个链接走一个javascript方法,在这个方法中打开某个url的网页?
下一个:为了到达学好开发网站的目的,学习Javascript,请问需要怎么做?还有UML与这javascript有什么密切联系吗?知道的麻烦说详细一点.谢谢!

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,