gpt4 book ai didi

jquery - 条件ajax调用

转载 作者:太空宇宙 更新时间:2023-11-04 14:54:00 26 4
gpt4 key购买 nike

这可能是非常基本的 jquery 语法,但我对它不是很熟悉。我只想在页面上存在具有特定 id 的 html 输入时才进行 jquery ajax 调用。我该怎么做?

最佳答案

  1. 确保您的脚本包含在要验证的标记之后(例如,就在结束 </body -标签之前)或等待文档就绪 DOM 事件。
  2. 检查 DOM 元素是否存在。

$( document ).ready(function() {
if ( $('#jepp').length ) { // 0 validates falsy and != 0 truthy
$('#jepp').val('do your stuff eg ajax')
}
});

// or a little bit more advanced
$(function() { // document ready
if ( document.getElementById('jepp') ) { // vanilla JavaScript but still straight forward
$('#jepp').val( $('#jepp').val() + ' | a bit more advanced')
}
})
<input id="jepp" value="" style="width:100%">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

关于jquery - 条件ajax调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45899398/

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