gpt4 book ai didi

javascript - jquery ajax unhide div 如果变量等于

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

    <script>
$(document).ready(function(){
var currentsize = $('option:selected', $('select#size')).val();
$.ajax({
type: \"post\",
url: \"tshirt_ajax.php?checkshop=$shopid&checkproducttype=$producttype&stockcolor=\" + $('#productColor$articleid').val() + \"&currentsize=\" + currentsize,
success: function(data){
$('select#size').html(data);
$('#size').coreUISelect();
$('#quantity').coreUISelect();
}
});

$('a.colorlink').click(function(e){
e.preventDefault();
var stockcolor = $(this).attr('id'),
checkshop = $shopid,
checkproducttype = $producttype;

$.ajax({
type: \"post\",
url: \"tshirt_ajax.php?checkshop=\" + checkshop + \"&checkproducttype=\" + checkproducttype + \"&stockcolor=\" + stockcolor + \"&currentsize=\" + currentsize,
beforeSend: function(){
$('#productColor$articleid').val(stockcolor);
},
success: function(data){
$('select#size').html(data);
$('#tshirtimg').attr('src', '$http://www.ni-dieu-ni-maitre.com/images/".$productid."_' + stockcolor + '_2/t-shirt-couleur.png');
$('#ex1 .zoomImg').attr('src', '$http://www.ni-dieu-ni-maitre.com/images/".$productid."_' + stockcolor + '_2/t-shirt-couleur.png');
$('#size').coreUISelect('update');
}
});

});

$('select#size').change(function(){
currentsize = $('option:selected', this).val();
});

});
</script>

我还有以下 div:

<div class='etiquettedescription_content' style='display:none;'>

在上面的脚本中,我想添加以下命令:

我正在尝试修改上面的脚本,因此当单击“a.colorlink”时,我想取消隐藏 div,但前提是单击的 stockcolor 对应于 1、351、63 或 16

知道我该怎么做吗?

最佳答案

如果我正确理解你的问题,那么试试这个:

$('a.colorlink').click(function(e){
e.preventDefault();
var stockcolor = $(this).attr('id'),
checkshop = $shopid,
checkproducttype = $producttype;
if( stockcolor==="1" || stockcolor==="351" stockcolor==="63" stockcolor==="16" ){
$(".etiquettedescription_content").show();
}else{
$(".etiquettedescription_content").hide();
}
.....

关于javascript - jquery ajax unhide div 如果变量等于,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20594342/

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