<head>
<title></title>
<meta http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<script src=
"../../scripts/jquery-1.3.1.js"
type=
"text/javascript"
></script>
<script type=
"text/javascript"
>
$(
function
(){
$(
"div"
).bind(
"click"
,
function
(){
$(
"body"
).append(
"<p>click事件</p>"
);
});
$(
"div"
).bind(
"click.plugin"
,
function
(){
$(
"body"
).append(
"<p>click.plugin事件</p>"
);
});
$(
"button"
).click(
function
() {
$(
"div"
).trigger(
"click!"
);
});
})
</script>
</head>
<body>
<div style=
"width:100px;height:50px;background:#888;color:white;"
>test.</div>
<button >根据命名空间,触发事件</button>
</body>
</html>