html 单击按钮删除某一单元格的内容

html 单击按钮删除某一单元格的内容,第1张

给出示例:

<html>

<head>

<meta http-equiv="content-type" content="text/htmlcharset=GBK">

<script type="text/javascript">

function clearVal() {

// 获取文本框对象

var el = document.getElementById('num')

if (el) {

// 将文本框对象值清空

el.value = ''

}

}

</script>

</head>

<body>

<form action="Untitled-3.html" name="form" method="post">

<div>Tem<br><input type="text" name="num" id="num"  value='7' /></div>

<div>

<input type="button" value="按钮" onclick="clearVal()"/>

</div>

</form>

</body>

</html>

html中清空select标签中的值方法如下:

准备材料:html+jquery、代码编辑器

1、新建一个html文件,命名为test.html,使用jquery清除select中的所有option。

2、在test.html文件内,使用select和option标签创建一个下拉选择框,代码如下:

3、在test.html文件内,设置select的id为myselect,用于下面通过该id获得select对象。

4、在test.html文件内,使用button标签创建一个按钮,按钮名称为“清除所有option”。

5、在test.html文件内,给button按钮绑定onclick点击事件,当按钮被点击时,执行deloption()函数。

6、在js标签中,创建deloption()函数,在函数内,通过id获得select对象,使用find()方法获得所有的option对象,使用remove()方法来实现删除所有option。

7、在浏览器打开test.html文件,

8、点击按钮,查看实现的效果。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7272049.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-03
下一篇 2023-04-03

发表评论

登录后才能评论

评论列表(0条)

保存