Iは、最後の(第2の)関数で第二の機能で定義されている「ID」を使用したいです。私は "var"という用語で十分だと思ったが、そうはしない。
どのように私はそれを行うことができます知っていますか?
jQuery("td.setting").live("click",function(){
text = jQuery(this).text();
var id = jQuery(this).attr("id");
jQuery(this).replaceWith("<td class=\"update\"><input class='inputSetting' type='text' value="+text+"> <img class=\"accept\" alt=\"accept button\" src='images/accept.png'></td>");
console.log(id);
});
jQuery("img.accept").live("click",function(){
jQuery("td.update").replaceWith("<td class=\"setting\"><proc name='C_Settings::getSavedSetting' params='"+id+"'></proc></td>");
});