在脚本中需要帮助

My script code like :

function changePrice(id) {
    var url = '<?php echo $base_url ?>home/getprice/';
    $.ajax({
        url: url,
        type: 'post',
        data: 'id='+id,
        success: function(msg) {
            alert(msg); 
            /* 
            "regular_price": "800",
            "discount_price": 720
            */
        }
    });
}

I want to both regular price and discount price on separate variable.How??

Try this:

In server side ajax call:

$respose['regular_price'] = 120;
$respose['discount_price'] = 100;
echo json_encode($response);

In JS: Considering msg is an json object

var data = JSON.parse(msg);
var regular  = data.regular_price;
var discount = data.discount_price;

If you are getting the response as "regular_price": "800", "discount_price": 720 then make it valid JSON, parse it and get the properties.

var obj = JSON.parse('{' + msg + '}');
//     valid json    -^-----------^-

// get object properties
var regular  = data.regular_price;
var discount = data.discount_price;

UPDATE : If response data is valid JSON format then set dataType: 'json' option.

$.ajax({
    url: url,
    type: 'post',
    data: 'id='+id,
    // set response datatype as json
    dataType:'json',
    success: function(msg) {
        // get properties
        var regular  = msg.regular_price;
        var discount = msg.discount_price;
    }
});

Or parse it directly if the response is a string.

$.ajax({
    url: url,
    type: 'post',
    data: 'id='+id,
    success: function(msg) {
        // parse the string
        var data = JSON.parse(msg);
        // get properties
        var regular  = data.regular_price;
        var discount = data.discount_price;
    }
});

Thanx to all..Here are the solution :

     <script>
      function changePrice(id)
       {
            var url = '<?php echo $base_url ?>home/getprice/';
            $.ajax({
            url:url,
            type:'post',
            data:'id='+id,
            dataType:'json',
            success:function(msg)
            {
                var regular  = msg.regular_price;
                var discount = msg.discount_price;
            } 
        });
     }
  </script>

My Function :

  $new = array (
     "regular_price" => $result->price,
      "discount_price" => $price
    );
    $newarray = json_encode($new, JSON_PRETTY_PRINT);
    print_r($newarray);