如何让这段搜索代码显示的时候变成一行?
发布网友
发布时间:2022-05-09 16:53
我来回答
共2个回答
热心网友
时间:2023-10-09 15:58
不明白啊 我在本地测试 就是在一行啊
<tr> <form method="get" action="http://www.soso.com/q" target="_blank">
<td><!--Begin of Search QQ -->
<a href="http://www.soso.com" target="_blank"></a>
<input type="text" name="w" size="30" maxlength="50" />
<input name="submit" type="submit" value="搜索" />
<input type="hidden" name="site" value="wanggouyizu.com" />
<input type="hidden" name="ch" value="website" />
<!--End of Search QQ --></td></form>
</tr>
你试试
热心网友
时间:2023-10-09 15:59
<tr>
<td><!--Begin of Search QQ -->
<table border="0" cellspacing="0" cellpadding="0">
<form method="get" action="http://www.soso.com/q" target="_blank">
<tr>
<td>
<input type="text" name="w" size="30" maxlength="50" />
<input name="submit" type="submit" value="搜索" />
<input type="hidden" name="site" value="wanggouyizu.com" />
<input type="hidden" name="ch" value="website" /></td>
</tr>
</form>
</table>
<!--End of Search QQ -->
</td>
</tr>
------------------
说明:<a href="http://www.soso.com" target="_blank"></a>
这个多余