元のコード例を編集して、「正しい方法」を含める必要がありました
私はjqueryモバイルプロジェクトに取り組んでおり、ONを使用してクリックをバインドすると、ページが初めてロードされたときに機能することに気付きましたが、ページに戻ると、戻るたびに別のバインドが取得されます. BIND を使用すると、ページを離れて戻った回数に関係なく、1 つしか取得できません。
私は BIND を使用しても問題ありませんが、将来廃止されることはわかっているので、ON が機能しない理由を知りたいですか?
私はjquery 1.9.1とjquery mobile 1.3.1を使用しています
このコードは、すべてのページの head セクションにあります。
<link rel="stylesheet" href="resources/js/jquery.mobile-1.3.1.min.css" />
<script src="resources/js/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
console.log('head javascript - before JQM is loaded');
// EDITED: Don't put JQM events inside .ready()
//$(function() {
// *** EDITED - THIS IS CORRECT WAY TO USE .on() IN THIS CASE ****
$(document).on("pageinit", "#page_login", function() {
console.log('#page_login page - pageinit event -- (only once for THIS page)');
$('#loginformSubmit').on('click', login_form_click_handler);
});
// *** THIS ONE WORKS ****
$(document).on("pageinit", "#page_login", function() {
console.log('#page_login page - pageinit event -- (only once for THIS page)');
$('#loginformSubmit').bind('click', login_form_click_handler);
});
// *** BUT, if I replace the section above with this
// then the login_form_click_handler() function
// will get executed N+1 times, where N = number
// of times I have viewed the page.
$(document).on("pageinit", "#page_login", function() {
console.log('#page_login page - pageinit event -- (only once for THIS page)');
/* EDITED NOTE: This doesn't work correctly because JQM maintains
a single 'document' so each time this event is
fired (initial browse and subsequent visits if
page is not in jqm cache) I was binding another
click event to the document which already had one
(or more) of the same. */
$(document).on('click', '#loginformSubmit', function(e){
login_form_click_handler(e);
});
});
//});
<script src="resources/js/jquery.mobile-1.3.1.min.js"></script>
これは #page_login ページの本文セクションです
<div data-role="page" id="page_login" data-theme="b" data-content-theme="b">
<div data-role="header">
<h1>AV Login</h1>
<a href="resources/dialogs/login_help.htm" data-icon="info" data-iconpos="right" data-theme="b" data-rel="dialog" class="ui-btn-right">Help</a>
</div>
<div data-role="content">
<form id='loginform' class="validate" action="resources/processors/login.php" method="post">
<div data-role="popup" id="invalid_login" data-transition="pop" class="ui-content" data-theme="e" data-overlay-theme="a" style="max-width:350px;">
<a href="#" data-rel="back" data-role="button" data-theme="a" data-icon="delete" data-iconpos="notext" class="ui-btn-right">Close</a>
Invalid username or password
</div>
<div data-role="popup" id="login_processor_error" data-transition="pop" class="ui-content" data-theme="e" data-overlay-theme="a" style="max-width:350px;">
<a href="#" data-rel="back" data-role="button" data-theme="a" data-icon="delete" data-iconpos="notext" class="ui-btn-right">Close</a>
<div id="login_processor_error_content"></div>
</div>
<ul data-role="listview" data-inset="true">
<li data-role="fieldcontain">
<label for="username">Username:</label>
<input type="text" name="username" id="username" data-mini="true" class="required" />
</li>
<li data-role="fieldcontain">
<label for="password">Password:</label>
<input type="password" name="password" id="password" data-mini="true" class="required" />
</li>
</ul>
<a id="loginformSubmit" href="" data-role="button" data-mini="true">Login</a>
</form>
<script type="text/javascript">
function login_form_click_handler(e){
console.log('login_form_click_handler');
e.preventDefault();
// EDIT NOTE: 'this' is the #loginformSubmit element
// can setup your own var to use, such as: var $this = $('#loginform');
// .. do form validation, submission, etc ..
}
</script>
</div>
</div>