JS 經常使用功能

$('.js-consumeSubmit').attr("disabled", false);//設置按鈕可點擊
  $('.js-consumeSubmit').attr("disabled",);//設置按鈕不可點擊
 change1: function (event) {
            var rowNum = event.currentTarget.attributes.num.value; //獲取num屬性的值
            
            dataList[rowNum - 1].categoryId = event.currentTarget.value;  //獲取input文本框的內容
        }
var dataList=new Array();   
dataList.splice(0, 1);  //list.remove(0);
data.push("");  //list.add("");
  var tempRowTr = $('.js-one-coupon-tr-0');
 tempRowTr.clone();  //複製該控件
tempRowTr.remove(); //刪除移除該控件
$('.js-cardno-check').each(function () {
    if ($(this).is(':checked')) {
        cardNoList.push($(this).val());
    }
});   //input checkBox 選中
$(dataElement).css("background-color","#FFFACD");  //背景顏色
相關文章
相關標籤/搜索