English 中文(简体)
从 JQuery Ajax 发送变量到 ASP 和 后方
原标题:Send Variable from JQuery Ajax to ASP and Back

我有一个包含各种 docId 的列表。 当要提交信息时, 将调用 JQuery 函数, 该函数会收集列表中的所有值 。 然后我需要将这些列表值通过 Ajax 发送到经典 ASP 页面, 该页面将格式化这些值, 然后发回原始页面以填充文本区域 。 这是我的 JQuery 代码 :

$("#create").click(function() {

    var strDocIDs = $.map($( .doc_list:visible ).find( li[value] ), function(li) { return $(li).attr("value") }).join(",");
    alert(strDocIDs);

    $.ajax({
           type: "GET",
           url: "newslettercreate_action.asp",
           data: { strDocIDS: strDocIDs },
           success: function(result) {
               var newsletter_string = $(result);
               $("#scratch").val(newsletter_string);
               }
        }); 
});

我的ASP代码是:

result = Request("strDocIDs")

我回到我文字区域的信息是:

[object Object]

我的窗体方法目前设置为 POST 。 在我使用提交按钮与传统按钮触发函数之间, 是否重要?

最佳回答

由于您正在以 $ 包装回复, 并成为 object 。 删除该行, 它将有效, 如果您的 ASP 页面正在返回某些内容 。

我敢肯定,您可能想要通过拨打 < default 方法来停止单击按钮的默认行为。

$(function(){

   $("#create").click(function(e) {
      e.preventDefault();

      var strDocIDs = $.map($( .doc_list:visible ).find( li[value] ), function(li) { return $(li).attr("value") }).join(",");
      alert(strDocIDs);

       $.ajax({
           type: "GET",
           url: "newslettercreate_action.asp",
           data: { strDocIDS: strDocIDs },
           success: function(result) {              
              $("#scratch").val(result);
            }
       });
   });

});
问题回答

$( 结果) 的结果是一个 jQuery 结果对象。 当您试图用 .val () 设置此结果对象时, JavaScript 引擎将它序列为 [object objects]

问题是, 结果 应该包含什么内容? 是文本吗? JSON? HTML?

如果它只是一个字符串, 那么它应该做到这一点:

$("#scratch").val(result);




相关问题
ajax login using httpRequest?

I am trying to develop my login script to give feedback to the user if the login is valid or not. Basically if it isn t correct a div box will show saying its wrong, if its correct it will show its ...

Virtual Tour using sketch up, ajax, flash technologies

I want to know if there are existing technology that make your 3d models in sketch into virtual tours, using either Ajax or Flash for web presentation. If there s none, which will be a good approach ...

How can i update div continuously

I have asp.net application where i have a div which showing the value from other site. The value of that site is changing continuously. I want that my div will automatically update in some interval ...

热门标签