Wijmo UI for the Web
negativeClass オプション

入力値が負のときのクラス文字列を決定します。

シンタックス
Javascript (Usage) 
$(function () {
    
    //値を取得する
    var returnsValue; //タイプ: string
    returnsValue = $(".selector").wijinputnumber("option", "negativeClass");
    
    //値を設定します
    var newValue; //タイプ: string
    $(".selector").wijinputnumber("option", "negativeClass", newValue);
        
});
Javascript (Specification) 
var negativeClass : string;
使用例
// <style type="text/css" rel="stylesheet"> // .negative { // background: yellow; // color: red !important; // } //</style>$("#textbox1").wijinputnumber({ negativeClass: 'negative' });
解説
数値ウィジェットの値が負の場合、negativeClass が負の入力値に適用されます。

関連トピック

参照

options タイプ
wijinputnumber jQuery ウィジェット

 

 


Copyright © GrapeCity inc. All rights reserved.