我正在使用Jeditable,我在localhost工作(不知道它是否重要)并且我看不到发送到AJAX页面的任何值。
JS代码:
$('.editable').editable('/mypage.asp?act=update-profile', {
type : 'textarea',
cancel : 'Cancel',
submit : 'OK',
indicator : '<img src="img/indicator.gif">',
tooltip : 'Click to edit...'
});
HTML
<p class="editable" id="testo_it">Some text here</p>
MyPage.asp并
<%
testo_it = Request.form("testo_it")
response.write testo_it
%>
变量“testo_it”为空!
有什么建议吗? 谢谢
答案 0 :(得分:0)
提交更改后,数据将为POST:ed to server:
ID = elements_id&安培;值= user_edited_content
所以你需要得到以下值:
Request.Form("value")