1

使用jquery alerts dialog plugin,如何将显示在警报中的表单中的值发送到回调功能?该表单在警报中,并且在我单击“确定”后发生回调。

这是有效的代码,忽略此代码,因为它是一个有效的示例,它基本上显示了如何序列化表单。此代码取自.serialise页面的 Jquery 文档。有问题的代码低于此。

<?php $moveablecats = mysql_query("SELECT * FROM categories WHERE id != '1'  "); ?><form id="changecategoryForm2"><select id="newflex" name="thecatidichose"> <option value=""></option> <?php while($catrow =mysql_fetch_array($moveablecats)){ ?> <option value="<?php echo "$catrow[id]"; ?>"><?php echo "$catrow[title]"; ?> </option><?php } ?></select>  </form>   <p><tt id="results"></tt></p>


<script>
    function showValues() {
      var str = $("form#changecategoryForm2").serialize();
      $("#results").text(str);
    }
    $(":checkbox, :radio").click(showValues);
    $("select").change(showValues);
    showValues();
</script>

将该工作代码与我在下一个代码下方的 Jquery 警报对话框插件中使用的代码进行比较。以下是显示警报的默认代码。

jPrompt('Type something:', 'Prefilled value', 'Prompt Dialog', function(r) {
    if( r ) alert('You entered ' + r);
});

这是我将上面表单的工作 html 代码放入警报中,这是一种称为提示的 javascript 警报。

我试图传递给回调函数的变量是一个序列化的表单,其 id 为changecategoryForm

  • 请注意,上面的工作示例是一个名为 changecategoryForm 2的表单
  • 下面有问题的表格称为changecategoryForm

这是有问题的代码。

$(".changecategory").click( function() {
   <?php $moveablecats = mysql_query("SELECT * FROM categories WHERE id != '1'  "); ?>
   var categoryid = $(this).attr("categoryid");
   var itemid = $(this).attr("itemid");
   var itemid2 = $(this).attr("itemid");
   var itemtitle = $(this).attr("itemtitle");
   var parenttag = $(this).parent().get(0).tagName;
   var removediv = "itemid_" +itemid;   
   jAlert(
      'Which category do you want to move <b>'+itemtitle+ '</b> to?<br><?php $moveablecats = mysql_query("SELECT * FROM categories WHERE id != '1'  "); ?><form id="changecategoryForm"><select id="newflex" name="thecatidichose"> <option value=""></option> <?php while($catrow =mysql_fetch_array($moveablecats)){ ?> <option value="<?php echo "$catrow[id]"; ?>"><?php echo "$catrow[title]"; ?> </option><?php } ?></select>  </form>   <p><tt id="results"></tt></p>','Change category', function(r)    {
         // $(parenttag).fadeOut('slow');  
         $("#"+removediv).fadeOut('slow');  

         var newflex = $("#newflex").val();
         alert(newflex); // this shows nothing    
         alert($("#changecategoryForm").serialize());
         alert('categoryid ' + categoryid + ' itemid ' + itemid + '.'); //this shows the variables

         jAlert(''+ itemtitle +' has been successfully moved.', 'Success');
      } // this brace closes function(r)
   ); 
});
4

1 回答 1

0

我自己通过重构代码解决了这个问题。无论如何,谢谢你的时间。结束。

于 2011-08-17T02:15:57.160 回答