问题描述: 通过点击标题2组件,实现pPages组件的值+1, 以下代码点击一次后就会跳出if(也就是pPages=1的时候就会结束),有大佬看一下吗 前端截图: 标题2_页面1组件中的JS代码如下: var pPagesWidget = duchamp.getWidgetByName("pPages"); var currentValue = pPagesWidget.getValue(); var newValue = Math.floor(currentValue) + 1; // 将当前值转换为整数并加1 //alert(newValue); //alert(isNaN(newValue));
if (newValue <= 5) {
pPagesWidget.setValue(newValue); // console.log(isNaN(pPagesWidget)); } else { alert("已达到最大值5!"); //console.log(isNaN(pPagesWidget)); } |