分享一个双击后编辑并AJAX提交保存的脚本
<script type="text/javascript">
jQuery(document).ready(function () {
jQuery(".wordsupdate").dblclick(function () {
id = jQuery(this).attr('id');
text = jQuery(this).text();
if (text) {
jQuery(this).html("<textarea style='width:200px;height:50px;' name=" + id + " >" + text + "</textarea>");
jQuery(".wordsupdate > textarea").focus().blur(function () {
jQuery.ajax({
type: "POST",
url: "/Home/Update",
data: "ID=" + id + "&Str=" + jQuery("#" + id + " > textarea").val(),
success: function (msg) {
jQuery("#" + id).html(jQuery("#" + id + " > textarea").val());
},
error: function (msg) {jQuery("#" + id).text(msg);}
});
})
}
})
})
</script>
jQuery(document).ready(function () {
jQuery(".wordsupdate").dblclick(function () {
id = jQuery(this).attr('id');
text = jQuery(this).text();
if (text) {
jQuery(this).html("<textarea style='width:200px;height:50px;' name=" + id + " >" + text + "</textarea>");
jQuery(".wordsupdate > textarea").focus().blur(function () {
jQuery.ajax({
type: "POST",
url: "/Home/Update",
data: "ID=" + id + "&Str=" + jQuery("#" + id + " > textarea").val(),
success: function (msg) {
jQuery("#" + id).html(jQuery("#" + id + " > textarea").val());
},
error: function (msg) {jQuery("#" + id).text(msg);}
});
})
}
})
})
</script>
作者:Bober Song
出处:http://bober.cnblogs.com/
CARE健康网: http://www.aicareyou.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
出处:http://bober.cnblogs.com/
CARE健康网: http://www.aicareyou.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。