當我在下面運行下面的代碼時,它在Dreamweaver中工作,但是當我去網頁瀏覽器中看到它顯示。Dreamweaver生成的HTML
的代碼是
<table cellpadding="5" cellspacing="1">
<tr>
<td align="center">
<form action="search.php" method="get">
<table><tr><td>
<input type="text" name="query" id="query" size="40" value="<? print quote_replace($query);?>" action="include/js_suggest/suggest.php" columns="2" autocomplete="off" delay="1500">
</div>
<td>
<input type="submit" value="Search!">
</td></tr></table>
當我在Chrome瀏覽器查看源代碼只加載
<table cellpadding="5" cellspacing="1">
<tr>
<td align="center">
<form action="search.php" method="get">
<table><tr><td>
我認爲你的帖子中有錯誤。是表單標籤還是外部的'action =「include ...'的部分? – 2011-04-20 14:10:34
孤兒?在表單元格中關閉DIV也 – 2011-04-20 14:11:31
我會猜測它在這行代碼中拋出一個錯誤:'<?打印quote_replace($ query);?>'嘗試使用''標記代替簡寫 – thedaian 2011-04-20 14:14:39