0

我能够将服务器名称传递给成功运行查询的 PHP。在 html 文件中,我希望根据 PHP 文件返回的值来更改评级选项。在我的文件中,我将其设置为 D,但我需要更改它以反映 PHP 返回的内容。

服务器.html

<html>
    <head>
        <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
        <script type="text/javascript" >
        $(document).ready(function(){
            var id = $('#existingserver').val();            
            $('#assetCenter').click(function(){
                var id = $('#textfield').val();
                $.get('servertest.php',{q:id}, function(htmlData){
                    $('#txtHint').html(htmlData);
                    var rating = $(htmlData).find("td[data-col=rating]").text();
                    alert(rating);
                    });
            });
        });

        </script>
    </head>
    <body>
        <form>
            <label>Existing Server</label><input type="text" name="existingserver" id="textfield" maxlength="15"/>

            <input type="checkbox" id="assetCenter" >Select to Pull Asset Center Data<br>
            <br />
            <br />
            Rating
            <select name="rating" id="rating" >
                <option value="A">A</option>
                <option value="B">B</option>
                <option value="C">C</option>
                <option value="D">D</option>
            </select>
        </form>
        <br />

        <div id="txtHint"><b>Server info will be listed here.</b></div>
    </body>
</html>

服务器测试.php

<?php
$q=$_GET["q"];

$con = mysql_connect('localhost', 'assignip', 'assignip');
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("ipreservation", $con);

$sql="SELECT * FROM acdata WHERE servername = '".$q."'";

$result = mysql_query($sql);

echo "<table border='1'>
<tr>
<th>Servername</th>
<th>Contact</th>
<th>Classification</th>
<th>Rating</th>
</tr>";

while($row = mysql_fetch_array($result))
  {
  echo "<tr>";
  echo "<td>" . $row['servername'] . "</td>";
  echo "<td>" . $row['contact'] . "</td>";
  echo "<td>" . $row['classification'] . "</td>";
  echo "<td>" . $row['rating'] . "</td>";
  echo "</tr>";
  echo "<td data-col='rating'>" . $row['rating'] . "</td>";
  }

  echo "</table>";

mysql_close($con);
?> 

数据库字段:servername、contact、classification、rating 数据:Server1、Ray、Production、A

4

2 回答 2

1

简短的回答是使用 JQuery 选择器来获得评分:

// get the text of the 4th td
var rating = $(htmlData).find("td").eq(3).text();

$("#rating").val(rating);

但是,您可能会注意到这种方法有点脆弱(也称为紧密耦合)——如果 UI 发生变化,例如您重新排序列,那么上述逻辑就会中断。

我建议以 JSON 格式从服务器返回数据,然后应用客户端模板来获取 HTML 表。至少,给列起这样的名称:

echo "<td data-col='rating'>" . $row['rating'] . "</td>";

然后您可以通过引用名称在客户端进行选择:

var rating = $(htmlData).find("td[data-col=rating]").text();
于 2012-12-03T18:17:02.053 回答
1

在您的 PHP 代码中,更改输出,使其显示您想要显示的值,而无需任何 html 标记。

接下来在您的 html 代码中,更改您的 $(document).ready 回调,以便将“D”替换为调用的响应文本(这是 PHP 将返回的内容)。

于 2012-12-03T18:09:44.040 回答