用jquery遍历表格之后,添加一行数据,如果数据存在,就不给添加,跳出d窗提示

用jquery遍历表格之后,添加一行数据,如果数据存在,就不给添加,跳出d窗提示,第1张

<script>

$(function(){ 

var tb = $("table.gradeTabel")

var txt = $(":text")

$(":button[value='添加']").click(function(){

var v = $.trim(txt.val())

if(v=="") return

else if(!/^\d+$/.test(v)){

alert("要输入数字才对")

txt.focus()

txt.select()

return

      }

else if(tb.find("tr:contains('"+v+"')").length != 0){

alert("学号已经存在了!")

return

tb.append("<tr><td colspan=1 class='stu_Number'>"+v+"</td></tr>")

})

})

</script>

import pandas as pd

import os

# 用os.walk遍历文件;用.endswith判断文件后缀

dfs = pd.DataFrame()

for root, dirs, files in os.walk(r'C:\Users\ll\Desktop\pandas\excels'):

for file in files:

if file.endswith('.xlsx'):

# 构建绝对路径

file_name = os.path.join(root, file)

# print(file_name)

df = pd.read_excel(file_name)

# print(df)

dfs = pd.concat([dfs, df])

# print(dfs)

dfs.to_excel(r'C:\Users\ll\Desktop\new.xlsx')


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

原文地址: http://outofmemory.cn/bake/11490151.html

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

发表评论

登录后才能评论

评论列表(0条)

保存