解決MUI阻止a標籤預設跳轉事件—方法總結
阿新 • • 發佈:2018-11-29
用過mui的小夥伴們一定不會陌生,有時候真的很煩mui本身會阻止a標籤預設跳轉。一般只要用了mui的ui元件,比如頭部,底部或者彈框,你就不能在用a標籤進行跳轉了。
注:專案中引用了mui後,可能也會遇到,html程式碼中未引用mui的元件程式碼段,但依然會導致a標籤預設跳轉失效的問題(mui一般用於移動端)
在實際專案使用中,我總結了以下幾種方法:
①:直接使用js或jq獲取要點選的元素,並繫結相應的點選事件,然後在用window.location.href進行跳轉,如下程式碼:
$(function(){ $("#index").on('tap', function() { window.location.href = '../index/index.html'; }); $("#classify").on('tap', function() { window.location.href = '../product/classify.html'; }); $("#vip").on('tap', function() { window.location.href = '../vip/vipCenter.html'; }); $("#shoppingCart").on('tap', function() { window.location.href = '../shopcart/shoppingcar.html'; }); $("#personal").on('tap', function() { window.location.href = '../personalCenter/index.html'; }); });
②:直接註釋mui中,阻止a標籤預設跳轉的原始碼部分 (不到萬不得已,一般不推薦直接修改或者註釋原始碼)
③:當你想讓某個頁面的a標籤跳轉不受mui影響,但又不想使用上面2種方法時,可以在當前頁面新增如下程式碼,親測好用
mui(document).on('tap', 'a', function() { var a = document.createElement('a'); a = this.cloneNode(true); a.click(); })
cloneNode(true)屬性介紹: http://www.w3school.com.cn/jsref/met_node_clonenode.asp
④:其實mui官方也提供了相應的解決方法,官方連結 http://dev.dcloud.net.cn/mui/window/#openwindow,程式碼如下:
//tap為mui封裝的單擊事件,解決移動端click事件點選延遲300毫秒的問題 document.getElementById('info').addEventListener('tap', function() { //開啟關於頁面 mui.openWindow({ url: 'examples/info.html', id:'info' }); });
小夥伴們可以根據情況選擇使用哪一種方法解決