【发布时间】:2015-09-26 16:52:18
【问题描述】:
我正在使用 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>
我的页面.asp
<%
testo_it = Request.form("testo_it")
response.write testo_it
%>
变量“testo_it”为空!
有什么建议吗? 谢谢
【问题讨论】:
标签: jquery ajax asp-classic jeditable