我已经实现了点击动态添加标签的链接但导致整个页面重新加载。有谁知道是什么原因?
$(document).ready(function() {
var tabObj = $("#tabs").tabs({
add: function(event, ui) {
//select newely opened tab
tabObj.tabs('select',ui.index);
}, collapsible: true, cache: true});
// , fx: {opacity: "toggle", duration: "normal"}
//Dynamic add tab
$("#assignee").click(function(){
//alert("FFFFFFFF");
tabObj.tabs("add", "#noc","NOC");
//tabObj.tabs("select", "#noc");
});
});
请帮忙。谢谢。
答案 0 :(得分:1)
$("#assignee").click(function(e){
e.preventDefault();
tabObj.tabs("add", "#noc","NOC");
});
答案 1 :(得分:1)
在return false;
tabObj.tabs("add", "#noc","NOC");
希望这有用。未经测试。