gpt4 book ai didi

javascript - 通过 JQuery 更改表单标签上的标签

转载 作者:行者123 更新时间:2023-12-03 06:21:59 25 4
gpt4 key购买 nike

我搜索了jquery更改标签,尽管有很多答案与我的问题无关。我想将标签更改为包含链接的其他内容。我似乎无法让它工作!我已将 JS 放在代码的头部位置,但没有运气,甚至使用了 JSFiddle,请参见下文。我做错了什么?

JSFiddle https://jsfiddle.net/14tx86j5/

HTML

    <input name="input_147.1" value="I agree to Veryappt’s Terms of Service" id="choice_3_147_1" type="checkbox">
<label for="choice_3_147_1" id="label_3_147_1">I agree to Companies Terms of Service</label>

Jquery

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($) {

$("#label_3_147_1 label").html('You also agree to our <a href="http://www.google.com/accounts/TOS" name="terms" target="_blank">Privacy Policy</a>, which describes how we process your information. <a href="https://support.google.com/accounts/answer/1733224?hl=en-GB" name="terms" target="_blank">Learn More</a> about why we ask for this information.');

});
</script>

最佳答案

您使用了错误的选择器来定位标签元素。您使用的选择器会在 id 为 label_3_147_1 的元素内查找 label 元素。您需要使用:

$("#label_3_147_1")

关于javascript - 通过 JQuery 更改表单标签上的标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38826883/

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