0
我犯了一個功能appendScript將上一個按鈕單擊事件被稱爲我的功能代碼是模式(「秀」)不按預期工作
function appendScript() {
var v_js;
var head = document.getElementsByTagName('head')[0];
v_js = document.createElement('script');
v_js.type = 'text/javascript';
v_js.src = "/resource/1372205606000/jquery_min_js";
head.appendChild(v_js);
interval = self.setInterval(function() {
if (jQuery) {
window.clearInterval(interval);
var body = document.getElementsByTagName('body')[0];
v_js = document.createElement('script');
v_js.type = "text/javascript";
v_js.src = "/resource/1372176744000/bootstrap_min_js";
}
body.appendChild(v_js);
var v_css = document.createElement('link');
v_css.rel = "stylesheets";
v_css.type = "text/css";
v_css.href = "/resource/1372206945000/bootstrap_min_css";
body.appendChild(v_css);
}, 300);
var interval1 = self.setInterval( function() {
if (typeof (jQuery.fn.modal) !== 'undefined') {
console.log('Hello!!');
window.clearInterval(interval1);
jQuery(document.getElementsByTagName('body')[0]).append('<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"><div class="modal-header"><button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button><h3 id="myModalLabel">Modal header</h3></div><div class="modal-body"><p>One fine body…</p></div><div class="modal-footer"><button class="btn" data-dismiss="modal" aria-hidden="true">Close</button><button class="btn btn-primary">Save changes</button></div></div>');
jQuery('#myModal').modal('show');
}
}, 300);
}
這個代碼不顯示模式時,我的點擊按鈕。任何人都可以請幫助爲什麼它不顯示模態對話,當我用顯示參數調用模態函數?其顯示你好!在控制檯中並正確添加這些元素,但唯一不符合預期的行是在下面。
jQuery('#myModal').modal('show');
就像一個註釋/建議,你不需要使用'document.getElementsByTagName('body')[0];' - 只需使用'document.body' – Ian
請正確縮進你的代碼,這是一個大的現在混亂。 – Teemu
@Teemu剛剛修好,我也有問題 – Ian