0

フォームに Img タグがあり、この ID を に送信したいと考えていますaspx.cs 。post メソッドを使用してこの ID を取得しましたが、ファイルRequest.Form["id"] に ID を取得していませんaspx.cs

コード:

$("img").click(function () {
 var id = $(this).attr("id");// Here I am getting id How can i send this id to aspx.cs
 jq.post("WebForm1.aspx",
             id: $(this).attr("id"));
});
4

3 に答える 3

0

thisメソッドを開いたときに上書きされるという問題が発生する場合がありますpost。試す:

$("img").click(function () {
      var my_id = $(this).attr("id");
      $.post("WebForm1.aspx", { id: my_id });
});

または、フォームに渡すパラメーターがいくつかある場合は、次のように、事前にオブジェクトを作成できます。

$("img").click(function () {
      var params = {id: $(this).attr("id"), href: $(this).attr("href")};
      $.post("WebForm1.aspx", params);
});
于 2012-05-03T07:05:28.177 に答える