0
我使用可jitableitable jquery插件。我的表是這樣的:此文來自哪裏?與可編輯
我有這樣的問題:當我點擊一個jeditable場,出現這樣的文字:
我的js代碼是:
$('.edit').each(function(){
$(this).editable($('#url_for_ajax').val()+'/update_role_ajax', {
indicator : '<img src="'+$('#url_for_ajax').val()+'/img/waiting.gif'+'">',
tooltip : 'Clic pour modifier la valeur',
style : 'inherit',
height : '20px',
onchange : 'submit',
cssclass : 'input',
id : 'id_role',
name : 'new_value',
submitdata : {
'id_role' : $(this).data('id_role'),
'nom_champ' : $(this).data('nom_champ'),
'_token' : $('meta[name="_token"]').attr('content')
},
callback : function(value, settings) {
//
},
onerror : function(settings,original,xhr){
alert("It wasn't possible to edit. Try again");
console.log("XHR Status: " + xhr.status)}
});
});
任何想法這個文本從哪裏來?
多米尼克
你的渲染標記是什麼樣的?你能提供一個[最小,完整和可驗證的例子](http://stackoverflow.com/help/mcve)? – gfullam