0

已编辑:我已将代码更改如下并收到“NaN”错误!有人可以给我一个关于那是什么的线索以及要解决的提示吗?谢谢。


有人可以告诉我这段代码有什么问题吗?

  1. 首先,我在 PHP 中调用了 Javascript,这真的可能吗?
  2. 我调用第二个警报的方式有问题吗?(尽管它是否可能在 php 中使用 js)这意味着显示文本输入和在警报消息中选择的选项。
  3. 我需要在循环的最后一个花括号之后放置“行尾”(;)吗?

这是代码:

<?php
$con=mysql_connect('localhost','root') or die ("Server connection failure!");
$db=mysql_select_db('regional_data',$con) or die ("Couldn't connect the database");
$SQL="SELECT sbstart, sbend FROM newchk";
$run=mysql_query($SQL,$con) or die ("SQL Error");
$nor=mysql_num_rows($run);
?>
<!DOCTYPE html>
<html>
<head><title></title>
<script type="text/javascript">
function ValidateData() {
var TextIn = document.getElementById('txtN');
    if(TextIn.value == ""){
        alert ("Text field is empty"); 
        return false;
    }else{
        var TextIn = document.getElementById('options');
        alert (<?php $i ?> + TextIn.value);
    }
}
</script>
</head>
<body>
<form onsubmit="return ValidateData()" method="POST">
<select STYLE='width:90px'><?php
while ($rec = mysql_fetch_array($run))
{
    for($i=$rec['sbstart']; $i<=$rec['sbend']; $i++)
    {
        echo "<option id='options' value=''.$i.''>$i<br></option>";
    }
}
?>
</select>
<input type="text" name="txtN">
<input type="submit" name="subN" value="Save">
</form>

</body>
</html> 
4

2 回答 2

0

您应该在中传递表单详细信息onsubmit,您的选择没有名称,您无法命名选项,您需要命名选择框:

<form onsubmit="return ValidateData(this)" method="POST">
<select STYLE='width:90px' name='options'><?php
while ($rec = mysql_fetch_array($run))
{
    for($i=$rec['sbstart']; $i<=$rec['sbend']; $i++)
    {
        echo "<option value='$i'>$i<br></option>";
    }
}
?>
</select>
<input type="text" name="txtN">
<input type="submit" name="subN" value="Save">
</form>

和你的功能:

<script type="text/javascript">
function ValidateData(form) {
    if(form.txtN.value == ""){
        alert ("Text field is empty"); 
        return false;
    } else {
        alert (form.options[form.options.selectedIndex].value + form.txtN.value);
    }
}
</script>
于 2012-09-09T15:22:41.300 回答
0

试试这个:

alert (<?php echo $i; ?> + TextIn.value);

您当前编写代码的方式将输出:

alert ( + TextIn.value);

...这是无效的JS。

于 2012-09-09T15:22:43.513 回答