将Select Value添加到jQuery字符串

时间:2015-05-13 14:47:39

标签: jquery ajax

我正在尝试使用此插件实现链式选择: http://www.appelsiini.net/projects/chained

        <script>
        $( document ).ready(function() {
            $("#code").remoteChained({
                parents : "#type",
                url : "/api/"
            });
        });
    </script>

我在顶部有这个代码,但是我想将#type的值附加到api URL。像:

        <script>
        $( document ).ready(function() {
            $("#code").remoteChained({
                parents : "#type",
                url : "/api/".$("#type").val()
            });
        });
    </script>

我该怎么做?

1 个答案:

答案 0 :(得分:0)

javascript中字符串的串联是使用+而非.

完成的

即:

    $( document ).ready(function() {
        $("#code").remoteChained({
            parents : "#type",
            url : "/api/" + $("#type").val()
        })
    });