</div>
$(function(){
$(".add").click(function(){
$(this).html("")//清空add里面的数据;
$(this).html("aa")//aa为要添加的数据,可以是字符串,也可以是变量;
})
})
可以使用 jQuery 设置内容的val()方法来实现,设置内容为空即达到清空文本框内容的目的:1
$("input[name='test']").val("").focus()// 将name=test的文本框清空并获得焦点,以便重新输入
示例代码如下
创建Html元素
<div class="box">
<span>点击按钮后清除文本框内容:</span>
<div class="content">
<input type="text" name="test" value="这是默认的内容">
</div>
<input type="button" class="btn" value="清除文本框内容">
</div>
设置css样式
div.box{width:300pxheight:250pxpadding:10px 20pxmargin:20pxborder:4px dashed #ccc}
div.box>span{color:#999font-style:italic}
div.content{width:250pxheight:100pxmargin:10px 0padding:5px 20pxborder:2px solid #ff6666}
input[type='text']{width:200pxheight:30pxborder:none}
input[type='button']{width:120pxheight:30pxmargin:10pxborder:2px solid #ebbcbe}
编写jquery代码
$(function(){
$("input:button").click(function() {
$("input[name='test']").val("").focus()// 清空并获得焦点
})
})
需要准备的材料分别有:电脑、html编辑器、浏览器。
1、首先,打开html编辑器,新建html文件,例如:index.html,并引入jquery。
2、在index.html中的<script>标签,输入jquery代码:
$('input[type="checkbox"]').change(function () {
var a = ''
$('input[type="checkbox"]:checked').each(function () {
if (a !== '') {
a += ','
}
a += $(this).val()
})
$('#a').val(a)
})
3、浏览器运行index.html页面,此时选择内容会自动追加到input输入框中,最多3个。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)