2

我能够处理提交事件,但无法处理可编辑的验证属性。

下面是我的代码:

HTML 代码

<a id="aspPhoneNumber" class="edit labelProps editable editable-click editable-empty" style="word-wrap:break-word;" data-original-title="" title="">Empty</a>

JavaScript 代码:

$(document).ready(function () {
      $('#aspPhoneNumber').editable({
            type: 'text',
            placement: 'right',
            success: function (response, newValue) {
                alert(response)
            }
        });
     $('#aspPhoneNumber').editable('option','validate', function (v) {
            alert("this"+v);
            if ($.trim(v) == '') { return 'Required field!'; }
        });
    $('.editable-submit').on('click', function () {
            alert("submited");
      });

});
4

1 回答 1

1

从可编辑的 HTML 中删除单词“Empty”,使其成为真正的空/空值。

http://jsfiddle.net/4ZSX2/

<a id="aspPhoneNumber" class="edit labelProps editable editable-click editable-empty" style="word-wrap:break-word;" data-original-title="" title=""></a>
于 2014-01-22T22:27:58.930 回答