我有什麼:在php mysql表提交按鈕
<table class="sortable table table-hover table-bordered">
<thead>
<tr>
<th>CPU</th>
<th>Speed</th>
<th>Cores</th>
<th>TDP</th>
<th>Preformace</th>
<th>Overclocing</th>
<th>Price</th>
<th>Buy</th>
</tr>
</thead>
<tbody>
<?php $i=0 ;
do {
$preformace = $row_Procesory['Preformace'];
$over = $row_Procesory['Overclocing'];
$i++; ?>
<tr>
<td><?php echo $row_Procesory['CPU']; ?></td>
<td><?php echo $row_Procesory['Speed']; ?></td>
<td><?php echo $row_Procesory['Cores']; ?></td>
<td><?php echo $row_Procesory['TDP']; ?></td>
<td><?php echo "
<script type='text/javascript'>
$(document).ready(function() {
$('#progressbarP$i').height(10).progressbar({
value : 1
});
$('#progressbarP$i .ui-progressbar-value').animate(
{width: '$preformace%'},{queue: false});
});
</script>
<div id='progressbarP$i' title='$preformace'></div>
";?></td>
<td><?php echo "
<script type='text/javascript'>
$(document).ready(function() {
$('#progressbarO$i').height(10).progressbar({
value : 1
});
$('#progressbarO$i .ui-progressbar-value').animate({
width: '$over%'
}, 1000);
});
</script>
<div id='progressbarO$i' title='$over'></div>
";?></td>
<td><?php echo $row_Procesory['Price']; ?></td>
<!-- BUTTON SECTION -->
<td><?php echo "<button class='btn btn-success' type='button' align='CENTER'>Add</button>";?></td>
</tr>
<?php } while ($row_Procesory = mysql_fetch_assoc($Procesory)); ?>
</tbody>
</table>
基本上即時通過MySQL的循環和顯示行。在preformace和超頻列即時通訊顯示動畫jquery progresbar值從MySQL。我也使用bootstrap和sortable.js來進行表格排序。
我想要什麼: 當我點擊添加按鈕處理器的名稱將sended到test.php的作爲變量。 我甚至不知道如何定位name元素使用jQuery:d
請進行的jsfiddle所以我們可以幫助更多的 – Sedz 2013-02-15 21:13:59
它從我的MySQL服務器動態這將是簡單的表中的jsfiddle – 2013-02-15 21:27:20
是的,我知道,但它會更容易測試它作爲HTML和JS反正看看在我的回答 – Sedz 2013-02-15 21:28:40