我有一些带有两个输入和一个提交按钮的简单代码,可在 Chrome 和 Firefox 中使用,但在 Safari 中完全没有响应。它不允许我输入文本,并且“提交”按钮似乎处于非活动状态。这是我的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<style type="text/css">
@charset "utf-8";
body {
background-color: #ccc;
font-family: Verdana, Geneva, sans-serif;
font-size: 80%;
margin: 0;
padding: 0;
}
#main {
width: 798px; /* same as your cfform's width value */
text-align: center;
margin: 0 auto;
}
</style>
</head>
<body>
<CFIF NOT ISDEFINED("FORM.SUBMIT")>
<div id="main">
<cfform format="flash" action="" skin="haloorange" width="798" height="540" style="background-color: ##999999; margin-top: 8px; margin-left: 38px;">
<cfformgroup type="panel" label="APPLICATION" width="790" style="background-color:##DDDDDD;">
<CFINPUT label="First Name" TYPE="Text" NAME="fname" MESSAGE="First Name required." value="Ahmed" REQUIRED="Yes" tooltip="Enter your first name." width="298">
<CFINPUT label="Last Name" TYPE="Text" NAME="lname" MESSAGE="Last Name required." value="Osman" REQUIRED="Yes" tooltip="Enter your last name." width="298">
<CFINPUT TYPE="submit" size="49" NAME="submit" value="Submit" tooltip="Save your name.">
</cfformgroup>
</cfform>
</div>
<CFELSE>
<cfdump var="#FORM#">
</CFIF>
</body>
</html>
我觉得我的代码没有任何问题,尽管它很简单,但我尝试过更简单的方法——看起来 Coldfusion 无法在 Safari 中生成有效的 flash 表单,但这似乎是一个太大的错误,无法被忽视互联网。
谢谢,艾哈迈德