-3

我正在用 javascript 和 jquery 编写简单的 ajax 代码并以 json 格式获取数据,如果那时 json 为空,我想更改按钮值。

4

1 回答 1

1

数据不为空条件

success: function(data){
    if(data!=””)
        document.getElementByInnerHtml('ButtonId').value=”newValue”;
    }//end success
于 2013-10-26T04:42:49.337 回答