search
HomeWeb Front-endJS Tutorialjs uses a loop to clear the input tag value in a div_javascript skills

HTML page

<div class="col-xs-9" id="search_songs_a"> 
<table> 
<tbody> 
<tr> 
<th>钢琴曲名称:</th> 
<td><input type="text" name="info[gqq_name]" id="gqq_name" style="width:200px;"/></td> 
<th style="padding-left:10px;">演奏者:</th> 
<td><input type="text" name="info[gqq_player]" id="gqq_player" style="width:200px;"/></td> 
</tr> 
</tbody> 
</table> 
lt;/div> 

<div class="col-xs-9" id="search_songs_b"> 
<table> 
<tbody> 
<tr> 
<th>属 性:</th> 
<td> 
<span><input type="radio" name="info[gqq_shuxing]" value="不限" checked="checked"/><label>不限</label></span> 
<span><input type="radio" name="info[gqq_shuxing]" value="流行钢琴曲"/><label>流行钢琴曲</label></span> 
<span><input type="radio" name="info[gqq_shuxing]" value="古典钢琴曲"/><label>古典钢琴曲</label></span> 
<span><input type="radio" name="info[gqq_shuxing]" value="爵士钢琴曲"/><label>爵士钢琴曲</label></span> 
<span><input type="radio" name="info[gqq_shuxing]" value="钢琴练习曲"/><label>钢琴练习曲</label></span> 
</td> 
</tr> 
</tbody> 
</table> 
lt;/div>

js page

//清空钢琴曲搜索条件 
function clearsongs() 
{ 
$("#search_songs_a :input").each(function () { 
$(this).val(""); 
}); 
$("input[name='info[gqq_shuxing]'][value='不限']").attr("checked",true); 
}
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何恢复已清空的浏览历史记录如何恢复已清空的浏览历史记录Feb 18, 2024 pm 10:05 PM

网页历史记录清空了怎么恢复日期:2022年6月10日简介:在日常使用电脑或手机浏览器时,我们会经常使用浏览器的历史记录来查找之前访问过的网页。然而,有时我们可能会不小心清空浏览器的历史记录,导致我们无法找回特定的网页。在本文中,我将告诉你一些恢复被清空的网页历史记录的方法。方法一:使用浏览器恢复功能大多数常见的浏览器都提供了恢复历史记录的功能,例如Googl

laravel input隐藏域怎么实现laravel input隐藏域怎么实现Dec 12, 2022 am 10:07 AM

laravel input隐藏域的实现方法:1、找到并打开Blade模板文件;2、在Blade模板中使用method_field方法来创建隐藏域,其创建语法是“{{ method_field('DELETE') }}”。

vue3怎么封装input组件和统一表单数据vue3怎么封装input组件和统一表单数据May 12, 2023 pm 03:58 PM

准备工作用vuecreateexample创建项目,参数大概如下:用原生input原生的input,主要是value和change,数据在change的时候需要同步。App.tsx如下:import{ref}from&#39;vue&#39;;exportdefault{setup(){//username就是数据constusername=ref(&#39;张三&#39;);//输入框变化的时候,同步数据constonInput=;return()=>({

如何处理KB4532693更新后导致桌面丢失?如何处理KB4532693更新后导致桌面丢失?Dec 27, 2023 am 11:41 AM

我们在使用win10操作系统的电脑时,有时候如果出现了问题故障大家一定会选择更新系统的补丁。那么对于KB4532693更新安装后出现了桌面清空的情况,小编觉得可能是新的补丁还不够稳定,所以在使用的时候还是有概率会出现问题。我们可以先尝试卸载补丁即可。详细步骤就来看下小编是怎么做的吧~KB4532693更新后桌面清空怎么办1、微软于2月11日开始推送Windows10KB4532693安全补丁,2、系统版本号将更新至18363.657,不过近期有网友发现,3、安装此更新会导致新的系统问题,Wind

微博怎么清空内容_微博清空内容教程微博怎么清空内容_微博清空内容教程Mar 30, 2024 pm 05:51 PM

1、首先打开微博APP,点击右下角我的。2、然后进入个人中心界面,点击左上角的微博。3、最后进入一个一个的删除微博信息即可。

Vue文档中的input框绑定事件详解Vue文档中的input框绑定事件详解Jun 21, 2023 am 08:12 AM

Vue.js是一种轻量级的JavaScript框架,具有易用、高效和灵活的特点,是目前广受欢迎的前端框架之一。在Vue.js中,input框绑定事件是一个十分常见的需求,本文将详细介绍Vue文档中的input框绑定事件。一、基础概念在Vue.js中,input框绑定事件指的是将输入框的值绑定到Vue实例的数据对象中,从而实现输入和响应的双向绑定。在Vue.j

点击input框没有光标怎么办点击input框没有光标怎么办Nov 24, 2023 am 09:44 AM

点击input框没有光标的解决办法:1、确认输入框焦点;2、清除浏览器缓存;3、更新浏览器;4、使用JavaScript;​5、检查硬件设备;6、检查输入框属性;7、调试JavaScript代码;8、检查页面其他元素;9、考虑浏览器兼容性。

Vue文档中的input框回车事件和验证函数使用方法Vue文档中的input框回车事件和验证函数使用方法Jun 20, 2023 am 09:13 AM

Vue是一个流行的JavaScript前端框架,它的核心是响应式数据绑定和组件系统。在Vue的应用程序中,input框是最常用的UI元素之一。在用户输入文本时,我们希望可以监听回车事件,并且在提交前对输入内容进行验证。本篇文章将介绍Vue文档中的input框回车事件和验证函数使用方法。一、Vue中input框回车事件在Vue中监听input框的回车事件非常简

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version