jquery如何给span赋值

2022年 10月 19日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

使用jquery给span赋值的方法:1.新建html项目,引入jquery;2.创建span标签,设置id属性;3.添加button按钮,绑定onclick点击事件;4.通过id属性获取对象,使用html()方法赋值;

具体步骤如下:

1.首先,新建一个html项目,并在项目中引入jquery;


<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>

2.引入jquery后,在项目中创建一个span标签,并设置id属性;

<span id="test"></span>

3.div标签创建好后,添加一个button按钮,并绑定onclick点击事件,用于点击赋值;


<button omClick="set()"></button>

4.最后,按钮添加好后,在点击事件中通过id属性获取对象,在使用html()方法即可给span赋值;

function set(){

$("#test").html('需赋值的内容');

}


小咸鱼

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: