**---Original code----**
$(function () {
var options = {
xaxis: { mode: "time", tickLength: 5 },
selection: { mode: "x" },
crosshair: { mode: "x" }
};
});
I want **crosshair: { mode: "x" }** to be inside of options variable when **rlt=true**.
Following is my code, but it's not correct.Is there anyone can point error out?
Thanks!
$(function () {
var rlt = true;
var options;
if(rlt){
options = {
xaxis: { mode: "time", tickLength: 5 },
selection: { mode: "x" },
crosshair: { mode: "x" }
};
}else{
options = {
xaxis: { mode: "time", tickLength: 5 },
selection: { mode: "x" }
};
}
});
Where are you checking the values in your options variable?
以上就是change Jquery variable in if else statement的详细内容,更多请关注web前端其它相关文章!