1
我正在使用jQuery UI對話框來顯示外部html文件的內容。在jQuery UI對話框後面的鏈接可以在Android上點擊
它適用於除Android以外的所有瀏覽器和設備,其中對話窗口後面的頁面上的鏈接是可點擊的 - 即,如果我點擊對話窗口內的某個地方並且下面有鏈接。他們實際上並沒有鏈接到任何地方,只是在鏈接周圍出現一個巨大的綠色框。
我該如何阻止這種情況發生?
$('#myBtn').click(function(e){
var width = $(window).width() * 0.8;
$('#dialog').html('');
$('#dialog').load('retail.html').dialog({
autoOpen: false,
title: 'Browse By Genre',
width: width,
height: 'auto',
position: ['top',20],
modal: true
$('#dialog').dialog('open');
});
謝謝。我也會這樣做 – fxfuture