如何在codeigniter视图页面中使用javascript来生成onkeyup事件

时间:2016-02-18 09:01:00

标签: php codeigniter

我想在价格和数量自动变化时从给定输入中计算数量*价格总数应该使用codeigniter中的javascript事件进行更改,并且应该禁用总字段我的代码如下

<?php

class User_db extends CI_model {

    public function get_record($username, $password) {
        if ($this->load->database('default')==FALSE)
        {
           exit('No database connection!');
        }
        $query=$this->db->get_where("tbl_user", array("username"=>$username, "password"=>md5($password)));
        if($query->num_rows()==1) {
            return $query->result();
        }
        else {
            return FALSE;
        }
    }
}

1 个答案:

答案 0 :(得分:1)

试试这个

$('#quantity').keyup(function() {
       var quantity = $("#quantity").val();
       var iPrice = $("#item_price").val();

       var total = quantity * iPrice;

       $("#total_price").val(total); // sets the total price input to the quantity * price
    });