doushang1964 2015-07-09 08:04
浏览 30
已采纳

$(this).data(“value”)没有使用$ .post传递值

My form

<div class="replymsg">
<form class="mainform" action="reply.php" method="POST">    
<textarea class="replytext" ></textarea>
<button data-value="<?php echo $id; ?>"       
class="replybutton">Submit</button>
</form>
</div>

$id comes from a MYSQL database. The following "test" code gives me the id of the reply form using Jquery:

<script>
$(".replybutton").click(function(){
alert($(this).data("value"));
});
</script>

Value of commentid :id is not passed when I use "actual" code for the website as follows (reply:replytext ... sends message is working):

<script>
$(document).ready(function(){
$(".replybutton").click(function(){
var id = $(this).data("value");
var replytext = $(".replytext").val();
$.post("reply.php",{ commentid: id, reply: replytext },function(data){
$("#result").html(data);    
    });
  });
}); 
</script>

Any ideas,any help is appreciated?

  • 写回答

3条回答 默认 最新

  • duanjiu3486 2015-07-10 06:30
    关注
    $(document).ready(function(){
    $(".replybutton").click(function(e){
      e.preventDefault();
    var id = $(this).data("value");
    var replytext = $(this).prev().val();    
    $.post("reply.php",{ commentid: id, reply: replytext
    },function(data){
    $("#result").html(data);    
         });
       });
    });
    

    Thanks for the help,I figured it out,my problem was sending Id and replytext in a comment/reply system when clicking replybutton. Working code above.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度