å®ä¹ä¸ºå
¨å±åéå°±å¯ä»¥äº
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>æåhtml</title>
<!-- å¼å
¥å¤é¨js -->
<script type="text/javascript" src="jquery-1.7.js"></script>
<script type="text/javascript">
var c;
$(function(){
$("#a").click(function(){
c=111;
});
$(function(){
$("#b").click(function(){
alert(c);
});
});
});
</script>
<!-- åcssæ ·å¼ -->
<style type="text/css">
</style>
</head>
<body>
<input type="button" value="ç¹å»è®¾ç½® å
¨å±åéc 为111" id="a"/>
<input type="button" value="ç¹å»è®¾ç½® æ¾ç¤ºåéc" id="b"/>
</body>
</html>