gpt4 book ai didi

php - 基于 SQL 操作表背景颜色,参数为表值

转载 作者:行者123 更新时间:2023-11-28 20:34:03 29 4
gpt4 key购买 nike

我正在尝试开发我的网站。我制作了一张作为按钮的表格。我使用 JavaScript 获取按钮的值,如下所示:

<script>
function setvalue(values) {
document.getElementById('posisi').value = values;
}
</script>

我的表格的 HTML:

<table width="1023" height="248" border="1">
<tr>
<th colspan="2" scope="col">A1</th>
<th colspan="2" scope="col">A2</th>
<th colspan="2" scope="col">A3</th>
</tr>
<tr>
<td><div align="center"><input type="button" onclick="popup_window_show('#sample', { pos : 'tag-right-down', parent : this, width : '270px' });setvalue(this.value);" value="A1.4" /></td>
<td><div align="center"><input type="button" onclick="popup_window_show('#sample', { pos : 'tag-right-down', parent : this, width : '270px' });setvalue(this.value);" value="A1.8" /></td>
<td><div align="center"><input type="button" onclick="popup_window_show('#sample', { pos : 'tag-right-down', parent : this, width : '270px' });setvalue(this.value);" value="A2.4" /></td>
<td><div align="center"><input type="button" onclick="popup_window_show('#sample', { pos : 'tag-right-down', parent : this, width : '270px' });setvalue(this.value);" value="A2.8" /></td>
<td><div align="center"><input type="button" onclick="popup_window_show('#sample', { pos : 'tag-right-down', parent : this, width : '270px' });setvalue(this.value);" value="A3.4" /></td>
<td><div align="center"><input type="button" onclick="popup_window_show('#sample', { pos : 'tag-right-down', parent : this, width : '270px' });setvalue(this.value);" value="A3.8" /></td>
</tr>
</table>

我尝试使用此 JavaScript 来操纵背景颜色:

<script type="text/javascript">
var htmlobjek;
$(document).ready(function(){
var pid = "document.getElementById('posisi').value = values";
$.ajax({
url: "cek.php",
data: "pid="+posisi,
cache: false,
success: function(data) {

当我的 SQL 在 cek.php 中成功时,我的算法将回调并显示在当前页面中以操作表格背景颜色。

在 cek.php 中我的 SQL 是这样的:

SELECT ..
FROM..
WHERE posisi='S_POST[posisi]'

我将计算结果(使用这个mssql_num_row(sql))。如果结果有值,则表格的背景颜色将为红色。如果没有,它将是绿色的。这就是让我困惑的地方。对我的网站有什么想法吗?我希望你明白我的意思。

最佳答案

你应该使用这样的成功函数...

 success: function() 
{

if(rsp.success)
{

rsp设置为此处的背景颜色 }

 }

关于php - 基于 SQL 操作表背景颜色,参数为表值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15784210/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com