jQuery 单击编辑 双击编辑 保存

<!-- 单击编辑 --> <mce:script language="javascript" 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("<input type='text' size='6' name="+id+" value="+text+">"); jQuery(".wordsupdate > input").focus().blur(function(){ jQuery.ajax({ type : "POST", url : "../components/ajaxreq.php", data : "type=updatemuswords&ID="+id+"&HANZI="+jQuery("#"+id+" >input").val(), success : function(msg){ jQuery("#"+id).text(msg); } }); }) } }) }) // --></mce:script> <div id="{$hotWordsRecordValue.ID}" class="wordsupdate">{$hotWordsRecordValue.HANZI}</div> 

你可能感兴趣的:(JavaScript,jquery,function,url,Class,input)