1
$.post(
    "ajax", 
    { 
        addItem : username.val(), 
        price : price.val(), 
        desc : desc.val(), 
        thumb : thumb.val(), 
        cat : cat.find(":selected").text(), 
        id : id.val() 
    }, 
        function(data) {
            error.html(data);
        }
);

$_POST['cat']将是空的

这意味着cat.find(":selected").text()在这种情况下不起作用。

echo '<select class="field2" name="category"> 
<option>Select Category</option>';
echo $shop->loadAlLCategories();
echo '</select>';

在这种情况下我做错了什么?为什么无论我选择什么,POST cat 总是为空?

public function loadAlLCategories()
{
    $this->items = $this->pdo->prepare("SELECT * FROM categories");
    $this->items->execute();

    while ($row = $this->items->fetch(PDO::FETCH_ASSOC))
    {
        echo '<option value="'.$row['category_name'].'">'.$row['category_name'].'</option>';
    }
}
4

2 回答 2

2

您可以使用 :

jQuery('.field2 option:selected').text();
于 2013-07-04T17:11:15.783 回答
1

你应该取 select 的值

$('.field2').val()
于 2013-07-04T17:00:12.440 回答