gpt4 book ai didi

jQuery 选择器 : Id Ends With?

转载 作者:IT王子 更新时间:2023-10-29 03:23:32 25 4
gpt4 key购买 nike

是否有一个选择器,我可以查询其 ID 以给定字符串结尾的元素?

假设我有一个 ID 为 ctl00$ContentBody$txtTitle 的元素。我如何通过仅传递 txtTitle 来获取此信息?

最佳答案

如果您知道元素类型,则:(例如:将“元素”替换为“div”)

$("element[id$='txtTitle']")

如果您不知道元素类型:

$("[id$='txtTitle']")

More information available


// the old way, needs exact ID: document.getElementById("hi").value = "kk";
$(function() {
$("[id$='txtTitle']").val("zz");
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input id="ctl_blabla_txtTitle" type="text" />

关于jQuery 选择器 : Id Ends With?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/609382/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com