jquery 不适用于 Firefox,但适用于 chrome。
主要问题出在 $("#p1").html(data) 行,它没有在浏览器上显示数据。
谁能帮我弄清楚为什么?
html代码:
1)当我点击开始按钮时,后端会发回一个字符串。
2) 在handleData,$("#p1").html(data) 不在firefox 上显示该字符串(但在chrome 上,没关系)。
<html>
<head>
<script src="js/jquery/jquery-1.7.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
function handleData(data, status) {
$("#p1").html(data);
};
$(document).ready(function() {
$("#start").click(function() {
$.get("testAsync?start=yes", handleData);
});
$("#submitResult").click(function() {
// jquery get the result value.
var $result = $("#result").val();
$.get("testAsync?result=" + $result, handleData);
});
});
</script>
</head>
<body>
<div id="content">
<button id="start">Start Test</button>
<p id="p1"></p>
<input type="text" id="result" value="" /> <input type="button"
id="submitResult" value="Submit" />
</div>
</body>
</html>