正则表达式目录

时间:2016-03-08 14:33:58

标签: regex

我需要一个以 function opendialog(mypage) { var linktoopen=mypage ; $.fancybox({ 'autoScale': false, 'transitionIn': 'elastic', 'transitionOut': 'elastic', 'speedIn': 500, 'speedOut': 300, 'width' : 800, 'height' : 410, 'autoDimensions': false, 'centerOnScroll': true, 'scrolling' : 'no', 'type' : 'iframe', 'href' : linktoopen, beforeShow: function(){ $(".fancybox-iframe").css({ margin : "-380px 0 0", height:"790px" }); } }); } 开头或以/en/结尾的目录路径的正则表达式。

我试试这个:

=en

但它不起作用。

1 个答案:

答案 0 :(得分:1)

您需要转义正斜杠并添加锚点^和$

@charset "utf-8";
/* CSS Document */