0
就像標題所說:Click事件只刷新後觸發
我有幾個按鈕,jQuery腳本頁面如下:
$(document).bind('mobileinit', function(){
$.mobile.loader.prototype.options.text = "loading";
$.mobile.loader.prototype.options.textVisible = false;
$.mobile.loader.prototype.options.theme = "a";
$.mobile.loader.prototype.options.html = "";
});
$(document).bind('pagecreate', function(event){
// New model form submittion
$('#new-model-submit').click(function(){
// do
});
// Compatibility
// Switch brands
$('#brands').change(function(){
// do something
});
// Add model to compatibility
$('input[type=checkbox]').live("change", function(){
// do something
});
// Specificaties
$("#add-product-spec").click(function(){
// do something
});
$("#save-product-specs").click(function(){
// Do something
});
// Foto's
$("#add-product-foto").click(function(){
// Do something
});
$("#save-product-fotos").click(function(){
// Do something
});
});
的問題是,這些事件不會被觸發時,該頁面首先被加載。但是,當我按F5並刷新頁面時,按鈕確實起作用。爲什麼是這樣?有沒有人有辦法解決嗎?
將明確檢查出來 – sn0ep