所以,这就是问题所在。我编写了一个代码,它根据选定的下拉菜单打开一个 div。这很好用。然后我想预先选择一个特定的选项($_POST['value'])。这很好用。当我也想打开相关的 div 时,问题就来了。我可以做一个或另一个,但永远不能同时做。请注意,我包含了工作选项并将其注释掉。请告诉我我应该做什么:
$(document).ready(function(){
$('.box').hide();
$('#sow').change(function() {
$('.box').hide();
$('#div' + $(this).val()).show();
});
});
var theText = "Printer Setup";
//$("#sow option:contains(" + theText + ")").attr('selected', 'selected');
//$("#sow option:contains(" + theText + ")")$('#divoption5').show();
$("#sow option:contains(" + theText + ")").attr('selected', 'selected')$('#divoption5').show();