0
我在eclipse中做了一個html頁面,但是當我引用外部jquery文件時,它不起作用。 下面是我的代碼:HTML頁面引用外部jquery文件不起作用
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="../css/layout.css">
<link rel="stylesheet" type="text/css" href="../css/flexigrid.css">
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="../script/flexigrid.js"></script>
<title>Insert title here</title>
<script charset="UTF-8">
$(document).ready(function(){
// document.getElementById("data").style.display="block";
$("data").css("display", "block");
});
</script>
</head>
<body">
<table id="data" style="width:200px; border:solid red 1px; display:none; ">
<tr>
<td>jnoifsf</td>
<td>nifs</td>
<td>nofsfsa</td>
</tr>
<tr>
<td>mflsf</td>
<td>noijfs</td>
<td>mifsf</td>
</tr>
</table>
</body>
</html>
線12的註釋的代碼可以正常工作。
通過外jQuery的文件,你的意思是文件的輸入? – David 2013-02-20 15:28:58