$(document).ready(function() {
doSomething(1);
$('#pp').click(doSomething(2));//why is this called?? I didn't click the button..
});
function doSomething(v) {
alert(v);
}
</script>
<body>
<input type="button" id="pp" value="asdf" />
我需要一個函數來加載和點擊。但不知何故doSomething()
被稱爲加載兩次。這是怎麼回事..??爲什麼我的函數被調用兩次?
參見:http://stackoverflow.com/questions/2316158/jquery-how-do-you-pass-this-as-函數參數/ 2316194#2316194 – deceze 2010-08-24 04:52:31
謝謝大家回答我的問題,真的。 – Deckard 2010-08-24 04:59:11