jQuery脚本只需在第一次单击时工作。为什么?

时间:2014-06-05 14:45:50

标签: jquery

我有这个脚本,它只适用于第一次点击。它应该根据选中的单选按钮更改单个标签中的内容。

$(function(){
    $(".reference").click(function()
    {
            var chosenTheme = $(".reference input").val(); 
            $(".template td:first-child").text("Some text - " + chosenTheme);
    });
});

您是否知道为什么第二次和更多次点击内容不会改变?

1 个答案:

答案 0 :(得分:0)

我使用了 var chosenTheme = $(this).find("input").val();

而不是 var chosenTheme = $(".reference input").val();

它现在正在运作!谢谢大家。