当前位置:网站首页>An example of using dynamic datalist
An example of using dynamic datalist
2022-06-25 12:25:00 【sr_ www】
<input name="person_school" value="{$row[person_school]}" list="school_list" placeholder=" Please fill in your school name " />
<datalist id="school_list"></datalist>
<script> $('[name=person_school]').bind('input propertychange', function () {
var keyword = $(this).val().replace(' ', '') $('#school_list').empty() if (keyword != '') {
$.getJSON('/Home/School/get_search_result', {
keyword: keyword }, function (res) {
$.each(res.data, function (index, item) {
if (res.data.length > 1 || keyword != item.school_name) {
$('#school_list').append('<option value="' + item.school_name + '"/>') } }) }) } }) </script>
边栏推荐
- Linear regression of common mathematical modeling models for College Students
- Is it safe to open an account and buy stocks? Who knows
- 一套自动化无纸办公系统(OA+审批流)源码:带数据字典
- 黑馬暢購商城---3.商品管理
- 2022年首期Techo Day腾讯技术开放日将于6月28日线上举办
- ECSHOP whole site custom URL supports directory type
- A set of automated paperless office system (oa+ approval process) source code: with data dictionary
- 黑马畅购商城---6.品牌、规格统计、条件筛选、分页排序、高亮显示
- Use PHP script to view the opened extensions
- 黑马畅购商城---1.项目介绍-环境搭建
猜你喜欢
Uncover gaussdb (for redis): comprehensive comparison of CODIS
A set of automated paperless office system (oa+ approval process) source code: with data dictionary
Execution order of MySQL query statements join, on and where
一款好用的印章设计工具 --(可转为ofd文件)
Linear regression of common mathematical modeling models for College Students
Pd1.4 to hdmi2.0 adapter cable disassembly.
Why can't you Ping the website but you can access it?
一套自动化无纸办公系统(OA+审批流)源码:带数据字典
plt.gca()画框及打标签
什么是Flink?Flink能用来做什么?
随机推荐
Découvrir gaussdb (pour redis): une comparaison complète avec Codis
什么是Flink?Flink能用来做什么?
ECSHOP whole site custom URL supports directory type
How can we make an annual income of onemillion yuan by making our own media video?
R语言使用nnet包的multinom函数构建无序多分类logistic回归模型、使用epiDisplay包的lrtest函数执行多个模型似然比检验对比两个模型的性能是否有差异
Le détour d'un ingénieur en matériel
Use PHP script to view the opened extensions
学习笔记 2022 综述 | 自动图机器学习,阐述 AGML 方法、库与方向
2022 meisai e topic ideas sharing + translation
Mpai data science platform SVM support vector machine classification \ explanation of regression parameter adjustment
What is the primordial universe
R language dplyr package filter function filters the data rows in the specified list whose contents in the dataframe data are not (not equal to one of the specified vectors)
Is it safe to open an account and buy stocks on the Internet?
Gradle知识点
ARM 立即数
Network related encapsulation introduced by webrtc native M96 basic base module
Black Horse Chang Shopping Mall - - - 3. Gestion des produits de base
15. Notes on the button style of WPF
confluence7.4. X upgrade record
黑马畅购商城---8.微服务网关Gateway和Jwt令牌