gpt4 book ai didi

PHP: onClick 不工作

转载 作者:行者123 更新时间:2023-11-30 12:57:05 24 4
gpt4 key购买 nike

我的按钮“VIEW”不会变成“booking_content.php”的形式,而只是刷新“home.php”的页面

这是我的代码:

$radio = mysql_query("SELECT fldBldgName, MAX(fldTotalDuration) as fldTotalDuration FROM tbldata WHERE fldNetname = '".$get_radio."' AND fldMonth = '".$get_month."' AND fldWeek = '".$get_week. "' GROUP BY fldBldgName ORDER BY id, fldBldgName, fldTotalDuration DESC");

echo "<table class = 'tblMain'>";
echo "<tr align='left'>";
echo "<td><b><u>BUILDING NAME</u></b></td>";
while ($row = mysql_fetch_array($radio))
{
echo "<tr><td align='left'>";
echo $row['fldBldgName']."'>";

echo "<input type='image' src='image/view.png' name='viewBldg' onClick='this.form.action='booking_content.php'; this.form.submit()'>";
echo $row['fldBldgName'];
}
echo "</tr></table>";

我的问题是这个:

  echo "<input type='image'  src='image/view.png' name='viewBldg' onClick='this.form.action='booking_content.php'; this.form.submit()'>";   

*onClick 不会转到 booking_content.php 页面,而只是刷新页面...

我无法上传程序的示例结果...

请单击此链接以便查看我的示例程序:http://postimg.org/image/wbiigechn/

此外,我的按钮代码在字段集中...

最佳答案

您的尝试将生成以下 HTML:

<input type='image' src='image/view.png' name='viewBldg' 
onclick='this.form.action='booking_content.php'; this.form.submit()'>

因此您的浏览器将无法正确解释 onclick 属性,因为 booking_content 之前的 '。尝试以下操作:

echo "<input type='image' src='image/view.png' name='viewBldg' 
onclick=\"this.form.action='booking_content.php'; this.form.submit()\">";

应该生成有效的 HTML,例如:

<input type='image' src='image/view.png' name='viewBldg' 
onclick="this.form.action='booking_content.php'; this.form.submit()">

关于PHP: onClick 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18673944/

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