オーバーレイ内にフォームを表示しようとしています。フォームはajaxを介してロードされます。これはすべてFirefox3.xで正常に機能します。
しかし、Safari 5.0(5533.16)では、オーバーレイはajaxリクエストを表示しますが、作成せず、htmlリクエストを作成します。
これが、jsで構成し、次にdocument.readyでModalPostForm.init()を呼び出す方法です。
パスティ-http ://pastie.org/1196064
var ModalPostForm = {
init: function(){
$("a[rel='#post_overlay']").each(function(){
//alert($(this).attr('href'));
$(this).overlay({
closeOnClick: false,
target: '#post_overlay',
fixed: false,
onBeforeLoad: function() {
// grab wrapper element inside content
var wrap = this.getOverlay().find(".contentWrap");
// load the page specified in the trigger
wrap.load(this.getTrigger().attr("href"));
},
onLoad: function() {
setTimeout("configurePostForm(200, 1000, 150)", 500);
},
onClose: function() {
$('.contentWrap').empty();
}
});
});
},
close: function(){
$("a[rel='#post_overlay']").each(function(){
var ol = $(this).data("overlay");
if(ol.isOpened()){
ol.close();
}
});
}
};
これが私のhtmlです
<div id="post_overlay" class="new-post-overlay span-12" style="top: 54.3px; left: 429px; position: absolute; display: none;"><a class="close"></a>
<div style="display: none;" id="form_loading" class="">
<div class="loading-inner-center"></div>
</div>
<div id="" class="contentWrap"></div>
</div>
なぜhtmlリクエストを発行するのですか?
ありがとう
アップデート
これは、コントローラーアクションでrailsrespond_toブロックのformat.htmlブロックを削除するとなくなります。
なぜそれがhtmlリクエストを送信するのか、なぜrailsがそれをhtmlリクエストであると考えるのかという疑問は残ります。実際にjsを実行できないブラウザーの場合は、そのブロックを削除したくありません。
問題を引き起こす新しいアクション
respond_to do |format|
# format.html # new.html.erb
format.js {
}
# format.xml { render :xml => @post }
end
これも問題の原因となる編集アクションです。newメソッドとeditの両方がたまたま「get」メソッドです。
# format.html {
# if @edit
# #
# setup_post_items(true)
# else
# flash[:error] = 'Sorry no further edits, Post has already been approved.'
# redirect_back_or_default root_url
# end
# }
format.js {
if !@edit
flash[:error] = 'Sorry no further edits, Post has already been approved.'
end
}