用ajax更改值

时间:2015-07-24 22:11:22

标签: jquery ajax

我有按钮,当我点击它时,它会运行ajax,它应该改变" startRow"值',但它没有。

为什么? 这是代码 -

Barcode barcode3;
barcode3 = BarcodeFactory.createCode128("CODE128x1");
barcode3.setResolution(300);
BarcodeImageHandler.savePNG(barcode3, new File("Code128-1.png"));`

AJAX:

<div id="commentsBox">
<?PHP 
    $startRow = 0;
    print_comments ($_GET['page'], $_GET['ownerID'], $startRow)
?>
</div>
<button class="btn btn-primary" id="moreComments" startRow='0' pageName="userPage" refID="<?PHP echo $_GET['ownerID'] ?>">MORE</button>

1 个答案:

答案 0 :(得分:0)

你的ajax电话没问题。问题是您使用的是jQuery选择器错误。

而不是:

$("#moreComments startRow").val(startRow);

你应该这样做

$("#moreComments").attr("startrow",startRow);

在第一个中,您正在尝试访问moreComments的子项,而startRow只是moreComments的一个属性。

希望它有所帮助!