【发布时间】:2013-05-28 01:57:38
【问题描述】:
我的default.aspx 页面中有以下代码
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<div class="default">
<div class="search_panel">
<select id="Select1" name="search_type">
<option>option1</option>
<option>option2</option>
</select><input name="search_text" type="text" /><input name="search" formaction="page.aspx" type="image" alt="submit" src="images/search.jpg" />
</div>
</div>
</asp:Content>
当用户按下enter 时,搜索按钮适用于所有浏览器(firefox、chrome、safari),但不适用于 IE 8。为什么会这样?
【问题讨论】:
标签: c# .net internet-explorer-8 cross-browser