wijmo.input.wijinputnumber 名前空間 > options タイプ : negativeClass オプション |
入力値が負のときのクラス文字列を決定します。
Javascript (Usage) | |
---|---|
$(function () { //値を取得する var returnsValue; //タイプ: string returnsValue = $(".selector").wijinputnumber("option", "negativeClass"); //値を設定します var newValue; //タイプ: string $(".selector").wijinputnumber("option", "negativeClass", newValue); }); |
Javascript (Specification) | |
---|---|
|
// <style type="text/css" rel="stylesheet"> // .negative { // background: yellow; // color: red !important; // } //</style>$("#textbox1").wijinputnumber({ negativeClass: 'negative' });