我能够处理提交事件但无法处理可编辑的验证属性。
以下是我的代码:
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");
});
});
答案 0 :(得分:1)
从可修改的HTML中删除“Empty”一词,使其成为真正的空/空值。
<a id="aspPhoneNumber" class="edit labelProps editable editable-click editable-empty" style="word-wrap:break-word;" data-original-title="" title=""></a>