Fork me on github

select,checkbox

select

js重置select使其选中第一个option

 $("#classifyName")[0].options[0].selected = true

js获取select被选中的value值

$("#isRespond").find('option:selected').val() 

js获取select被选中的文本值

$("#classifyName").find('option:selected').text()

清空option

document.getElementById("allarg1").options.length = 0

 

checkbox

获取checkbox是否被选中的值

$("#ischeckdate").prop("checked")

 

posted @ 2022-04-08 13:00  我の前端日记  阅读(75)  评论(0编辑  收藏  举报
Copyright © 2021 LinCangHai
Powered by .NET 5.0 on Kubernetes