Jquery 添加响应状态

发布于 2024-09-14 03:58:29 字数 916 浏览 4 评论 0原文

     <form>
  <input type="checkbox" id="m_q" name="m_q" value="271">Name</input><div name="status"></div>
   <input type="checkbox" id="m_q" name="m_q" value="271">Age</input><div name="status"></div>
   <input type="checkbox" id="m_q" name="m_q" value="271">ID</input><div name="status"></div>
  <input type="checkbox" id="m_q" name="m_q" value="271">Emp no</input><div name="status"></div>
 <input type="button" value="save" onclick="save" />
 </form>

 <script>
   function save()
    {
     $.post("/det/save_details/",snddata,
    function(data){
   if(data == 0 ){
   alert('data added');
   //How to disable the checkbox field and in the div say data added
    },"json");
     } 
</script>

在上面的代码中,在 onselect() 从服务器获取响应后,如何在状态 div 中仅针对选定的复选框说“已添加数据”

     <form>
  <input type="checkbox" id="m_q" name="m_q" value="271">Name</input><div name="status"></div>
   <input type="checkbox" id="m_q" name="m_q" value="271">Age</input><div name="status"></div>
   <input type="checkbox" id="m_q" name="m_q" value="271">ID</input><div name="status"></div>
  <input type="checkbox" id="m_q" name="m_q" value="271">Emp no</input><div name="status"></div>
 <input type="button" value="save" onclick="save" />
 </form>

 <script>
   function save()
    {
     $.post("/det/save_details/",snddata,
    function(data){
   if(data == 0 ){
   alert('data added');
   //How to disable the checkbox field and in the div say data added
    },"json");
     } 
</script>

In the above code after getting the response from the server onselect() ,how to say "data added" in the status div for selected checkbox only

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

童话 2024-09-21 03:58:30

@Haim 的代码有效,但我认为他问的是如何根据选中的复选框和他提供的 html 将 html 添加到 div,该 html 没有 div 的特定 ID,所以这里是一些 jquery 代码适用于您提供的 html。它会抓取选中的框并禁用它们,然后抓取下一个名称=状态的同级 div 以将 html 文本添加到其中。

$('input:checkbox:checked').attr('disabled', true);
$('input:checkbox:checked + div[name=status]').html('data added');

您可以看到 jsFiddle 页面,其中包含 HTML 示例(没有 Ajax 部分,只需在单击中完成)而是按钮的事件)。

@Haim's code works but I think he was asking how to add the html to the div based on which checkbox was checked and based on the html he provided, which doesn't have specific ID's for the divs, so here is some jquery code that works with the html you have provided. It grabs the checked boxes and disables them, then grabs the next sibling div with name=status to add the html text to it.

$('input:checkbox:checked').attr('disabled', true);
$('input:checkbox:checked + div[name=status]').html('data added');

You can see a jsFiddle page with an example with your HTML (without the Ajax part and just done in the click event of the button instead).

静水深流 2024-09-21 03:58:30

要在 div 中显示,请使用 html() 函数

$('#statusdivid').html('data added');

禁用使用 attr()

$('#checkboxid').attr('disabled', true);

to display in div use html() func

$('#statusdivid').html('data added');

to disable use attr()

$('#checkboxid').attr('disabled', true);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文