如何从jquery求和2结果查询

时间:2013-05-21 07:31:45

标签: jquery object nan

如何从jquery中加总2个数字。我在这里做的是一个链式选择,我的第一个选择是Product(书),如果他们选择jquery将显示价格。我的第二个选择是Page(多少页面),如果他们选择jquery将显示来自DB的价格。我尝试添加,但我有NaN或[对象对象]。请帮忙。

jquery的

$(document).ready(function () {
    //disable not 1st select
    $("#description").attr("disabled", "disabled");
    $("#orientation").attr("disabled", "disabled");
    $("#page").attr("disabled", "disabled");

    //start----------------------compny
    $("select#company").change(function () {
        $("#description").html("<option>wait...</option>");
        var id = $("#company option:selected").attr('value');
        $.post("./includes/select_type.php", {
            id: id
        },

        function (data0) {
            $("#description").removeAttr("disabled");
            $("#description").html(data0);
        });
    });

    //start----------------------page
    $("#description").change(function () {
        $("#page").html("<option>wait...</option>");
        var id2 = $("#description option:selected").attr('value');
        $.post("./includes/select_insidepage.php", {
            id2: id2
        },

        function (data1) {
            $("#page").removeAttr("disabled");
            $("#page").html(data1);

            //show price---------------------------
            $("#price").html(data1);
            $("#price2").html(data1);
        });
    });


    //start----------------------orientation
    $("#page").change(function () {
        $("#orientation").html("<option>wait...</option>");
        var id3 = $("#page option:selected").attr('value');
        $.post("./includes/select_orient.php", {
            id3: id3
        },

        function (data2) {
            $("#orientation").removeAttr("disabled");
            $("#orientation").html(data2);

            //show insidepagePrice-----------------
            $("#insidepage").html(data2);
            $("#insidepage2").html(data2);

            //show Total Price----------------- 
            $("$total").html(+data + +data2);

        });
    }); 

0 个答案:

没有答案