添加替换删除

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>jquery</title>
<!--
        jQuery使用:
        第一步就是导入类库
        -->
<script src="js/jquery-3.2.1.min.js" type="text/javascript" charset="utf-8"></script>
<!--

        jquery
        1.概念
       
        2.语法
        选择器:
        基本选择器:
        1.id -------------  $("#id")
        3.jQuery对象和原生对象转换
        4.明天
        对节点的增删改查
       
        报错:
        Uncaught ReferenceError: $ is not defined  没有找到引用的包
        -->
</head>
<body>
<input type="button" id="id0" value="警示框" />
<input type="text" id="name" value="" />
<br>
<input type="text" id="password" value="" />
<table border="1px" cellspacing="0px" cellpadding="0px" id="t">
<tr><th>姓名</th><th>年龄</th></tr>

</table>
<input type="button" id="add" value="添加" />
<hr />
<img src="img/boy.gif" class="img0"/>
<input type="button" id="dele" value="删除" />
<input type="button" id="tihuan" value="替换" />
<script type="text/javascript">
//获取 标签
var b = $("#id0");//var b = document.getElementById("id0");
console.log(b);//[object Object]
var b1 = document.getElementById("id0");
console.log(b1)//[object HTMLInputElement]

//原生对象,和jQuery对象的转换
var b2 = $(b1);//原生的转成jQuery的对象
console.log("b2----"+b2);
var b3 = b[0];
console.log("b3---"+b3)

//对象节点的操作
//
$("#add").click(function(){

var name = $("#name").val();//value
var age = $("#password").val();

$("#t").append("<tr><td>"+name+"</td><td>"+age+"</td></tr>");

});
//删除
$("#dele").click(function(){

$(".img0").remove();

//delete() 没有此方法
//empty() 清空,但是标签还在,内容没了



})
//修改
$("#tihuan").click(function(){
//标签除了可以直接写
//还可以是使用document创建出来的
//还可以是document.getElementById()/$(选择器)
$(".img0").replaceWith("<a href='#'>超链接</a>")

})
</script>

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值