私はロードした別のページをクリックして、スライダメニューを表示したいと思います。 firefoxの作品では、私はすべてのブラウザで自分のHTMLを動作させたいですか?手伝っていただけませんか?ありがとう。onClickはChromeで動作していませんか?
のindex.html:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<body>
<div >
<a href="#" id="link1" >Vertical link 1</a>
</div>
<div id="content"></div>
<script>
$("#link1").on("click", function() {
$("#content").load("test.html");
});
</script>
</body>
</html>
はtest.htmlという:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<div>
<table>
<thead>
<tr>
<th scope="col">A</th>
<th scope="col">B</th>
<th scope="col">C</th>
<th scope="col">D</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
それを生産できません。それがうまくいかないところで、どんなフィドルも共有できますか? –
私は質問を改訂しました。私は – Alex
をクリックして別のページを読み込みたいのですか?簡単にtest.htmlをアンカーのhrefに入れることはできませんか?それは利用できませんか? –