我有这个脚本,它只适用于第一次点击。它应该根据选中的单选按钮更改单个标签中的内容。
$(function(){
$(".reference").click(function()
{
var chosenTheme = $(".reference input").val();
$(".template td:first-child").text("Some text - " + chosenTheme);
});
});
您是否知道为什么第二次和更多次点击内容不会改变?
答案 0 :(得分:0)
我使用了 var chosenTheme = $(this).find("input").val();
而不是 var chosenTheme = $(".reference input").val();
它现在正在运作!谢谢大家。