我正在寻找一个详尽的Safari Mobile for iPad和iPhone支持字体列表.事实上,我可以在我的网站中使用哪些字体?
我只想在元素(a或div)上启用/禁用onclick和href.
我不知道该怎么做.
我可以通过在click事件上添加处理程序来禁用onclick,但href仍然可用.
$(this).unbind().click(function(event){
event.preventDefault();
return;
});
Run Code Online (Sandbox Code Playgroud)
编辑找到了一个元素
if ($(this).attr("href")) {
$(this).attr("x-href", $(this).attr("href"));
$(this).removeAttr("href");
}
Run Code Online (Sandbox Code Playgroud)