gpt4 book ai didi

jquery - 如何在单击按钮时显示和隐藏部分 View ?

转载 作者:行者123 更新时间:2023-12-01 08:34:59 24 4
gpt4 key购买 nike

我想在单击同一按钮时显示和隐藏我的部分 View 。下面的代码用于显示部分 View 。如果用户再次单击同一按钮,如何删除部分 View ?

<div id="myPartialView"></div>
$('#myBtn').click(function() {
$.ajax({
url: '/Home/GetData',
datatype: "html",
type: "GET",
cache: false,
success: function(result) {
$('#myPartialView').empty();
$('#myPartialView').html(result)
},
error: function(xhr, status, error) {
var errorMessage = xhr.status + ': ' + xhr.statusText;
alert('error - ' + errorMessage);
}
});

return false;
});

最佳答案

我将 myPartialView 缓存到一个变量中,因此我们只需查找它一次。

编辑:

更改了代码以测试 :empty,因此即使在初始状态下它也应该可以工作。

$('#myBtn').click(function () {
var $myPartialView = $('#myPartialView');
if ($myPartialView.is(':empty')) {
$.ajax({
url: '/Home/GetData',
datatype: "html",
type: "GET",
cache: false,
success: function (result) {
$myPartialView.html(result);
},
error: function (xhr, status, error) {
var errorMessage = xhr.status + ': ' + xhr.statusText;
alert('error - ' + errorMessage);
}
});
}
else {
$myPartialView.empty();
}

return false;
});

关于jquery - 如何在单击按钮时显示和隐藏部分 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57396398/

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