我希望我能在合适的地方发帖,因为我不想创建另一个同样问题的主题...我的代码适用于jsfiddle,但不在我的网站上......不知道为什么......
工作小提琴:Fiddle
$(document).ready(function() {
$("div.resp").hide();
$("input[name$='resp']").click(function() {
var test = $(this).val();
$("div.resp").hide();
$("#"+test).show();
});
});
整个页面使用相同的代码(不工作):Page
$(document).ready(function() {
$("div.resp").hide();
$("input[name$='resp']").click(function() {
var test = $(this).val();
$("div.resp").hide();
$("#"+test).show();
});
});