JS&ハイパーリンク禁止&e.preventDefault()イベントのデフォルトを阻止する
2494 ワード
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title> title>
<script type="text/javascript" src="javascript/jquery-1.4.2.js">script>
<script type="text/javascript">
$(function() {
$("a").click(function(e) {
//alert(" ");
e.preventDefault();
});
})
script>
head>
<body>
<a href="1.html"> a>
body>
html>