这是从edit-in-place-using-ajax直接提升的,但它不起作用。谁能建议为什么?保存按钮和取消按钮都不做任何事情。我认为单击时的 saveButton 和 cancelButton 不会触发分配给其单击事件的 jquery 代码。
<script src="/jscript/jquery-1.7.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#editInPlace").click(function(){
var textarea = '<div><textarea rows="5" cols="30">' + $(this).html() + '</textarea>';
var button = '<div><input type="button" value="SAVE" class="saveButton" /> OR <input type="button" value="CANCEL" class="cancelButton"/></div></div>';
var revert = $(this).html();
$(this).after(textarea+button).remove();
});
$('.saveButton').click(function(){saveChanges(this, false);});
$('.cancelButton').click(function(){saveChanges(this, revert);});
function saveChanges(obj, cancel) {
if (!cancel) {
var t = $(obj).parent().siblings(0).val();
alert('new text='+t);
}else {
var t = revert; //orig code had cancel;
}
$(obj).parent().parent().after('<div id="editInPlace">'+t+'</div>').remove()
}
});
</script>
<div id='editInPlace'>we are going to change this comment.</div>
为@nbrook 添加图像(基于他建议的代码)....
初始显示 ->
第一次点击->
在文本区域内第二次单击 - >
这继续……