javaScript练习1

1:窗口打开和设置

制作新按钮,“新窗口打开网站” ,点击打开新窗口。
任务
1、新窗口打开时弹出确认框,是否打开
提示: 使用 if 判断确认框是否点击了确定,如点击弹出输入对话框,否则没有任何操作。
2、通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
3、打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。

代码:

<!DOCTYPE html>
<html>
 <head>
  <title> new document </title>  
  <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>   
  <script type="text/javascript">  
    function openWindow()
    {
    // 新窗口打开时弹出确认框,是否打开
    var open_fag = confirm("是否要打开新的网页?");
    if (open_fag == true)
        myurl = prompt("请输入你要打开的网址:","http://www.imooc.com/");
        var winopp = window.open(myurl,'width=400,height=500,menubar=no,toolbar=no')
    else
        alert("你真的不想打开一个网页")
    // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/

    //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
    }

  </script> 
 </head> 
 <body> 
      <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 
 </body>
</html>

2:设置元素的样式

通过className属性来设置元素的样式:
1.给id=”p1”元素通过className添加”类名为one”的样式。当点击”添加样式”按钮,第一段文字添加样式。
2.给id=”p2”元素通过className修改为”类名为two”的样式。当点击”更改外观”按钮,第二段文字更改样式。

代码:

 <!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>className属性</title>
<style>
    body{ font-size:16px;}
    .one{
        border:1px solid #eee;
        width:230px;
        height:50px;
        background:#ccc;
        color:yellow;
    }
    .two{
        border:1px solid #ccc;
        width:230px;
        height:50px;
        background:#9CF;
        color:blue;
    }
    </style>
</head>
<body>
    <p id="p1" > JavaScript使网页显示动态效果并实现与用户交互功能。</p>
    <input type="button" value="添加样式" onclick="add()"/>
    <p id="p2" class="one">JavaScript使网页显示动态效果并实现与用户交互功能。</p>
    <input type="button" value="更改外观" onclick="modify()"/>

    <script type="text/javascript">
       function add(){
          var p1 = document.getElementById("p1");
          p1.className="one"
       }
       function modify(){
          var p2 = document.getElementById("p2");
          p2.className="two"
       }
    </script>
</body>
</html>

3:样式改变

写”改变颜色”、”改变宽高”、”隐藏内容”、”显示内容”、”取消设置”的函数,点击相应按钮执行相应操作,点击”取消设置”按钮后,提示是否取消设置,如是执行操作,否则不做操作。
代码:

代码:

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" Content="text/html; charset=utf-8" />
<title>javascript</title>
<style type="text/css">
body{font-size:12px;}
#txt{
    height:400px;
    width:600px;
    border:#333 solid 1px;
    padding:5px;}
p{
    line-height:18px;
    text-indent:2em;}
</style>
</head>
<body>
  <h2 id="con">JavaScript课程</H2>
  <div id="txt"> 
     <h5>JavaScript为网页添加动态效果并实现与用户交互的功能。</h5>
        <p>1. JavaScript入门篇,让不懂JS的你,快速了解JS。</p>
        <p>2. JavaScript进阶篇,让你掌握JS的基础语法、函数、数组、事件、内置对象、BOM浏览器、DOM操作。</p>
        <p>3. 学完以上两门基础课后,在深入学习JavaScript的变量作用域、事件、对象、运动、cookie、正则表达式、ajax等课程。</p>
  </div>
  <form>
  <!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
    <input type="button" value="改变颜色" onclick="modify_color()">  
    <input type="button" value="改变宽高" onclick="modify_w_height()">
    <input type="button" value="隐藏内容" onclick="hide_content()">
    <input type="button" value="显示内容" onclick="show_content()">
    <input type="button" value="取消设置" onclick="Aboutshezhi()">
  </form>
  <script type="text/javascript">
  obj = document.getElementById("txt");
    //定义"改变颜色"的函数
    function modify_color()
    {
        obj.style.color="red"
        obj.style.backgroundColor="gray"
    }

//定义"改变宽高"的函数
    function modify_w_height()
    {

        obj.style.width="550px"//注意需要px作为单位
        obj.style.height="600px"
    }
//定义"隐藏内容"的函数
    function hide_content()
    {
        obj.style.display="none";
    }
//定义"显示内容"的函数
    function show_content()
    {
        obj.style.display="block";
    }

//定义"取消设置"的函数
    function Aboutshezhi()
    {
        var msg=confirm("取消设置")
        if(msg == true)
        {
            obj.removeAttribute('style')
        }
    }


  </script>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值