在CSS中我有background-image: url(folder/bg.jpg);
。
爲此,JQuery的css("background-image")
回報url(http://www.example.com/folder/bg.jpg)
,
,但我只需要folder/bg.jpg
。
我正在尋找一個正則表達式來解決這個問題。
在CSS中我有background-image: url(folder/bg.jpg);
。
爲此,JQuery的css("background-image")
回報url(http://www.example.com/folder/bg.jpg)
,
,但我只需要folder/bg.jpg
。
我正在尋找一個正則表達式來解決這個問題。
嘗試使用String.prototype.split()
與RegExp
/\//
,Array.prototype.join()
,String.prototype.slice()
$("div").html(
$("div").css("backgroundImage").split(/\//)
.slice(-2).join("/").slice(0, -1)
)
div {
background-image: url(http://www.example.com/folder/bg.jpg)
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js">
</script>
<div></div>
當然,路徑總是不同的,這只是一個例子。 – tom
@tom查看更新後的帖子 – guest271314
你肯定有更好的替換window.location.hostname在返回的字符串,但仍然不會是在CSS屬性中設置的路徑 –
由於jQuery將返回的絕對路徑,你將永遠無法確定沒有字符串操作了解的相對路徑是什麼刪除給定如何嵌套您的網頁可能在您的目錄層次結構。我會建議字符串替換正則表達式。見下面的plnkr。
$("div").click(function() {
var bg = $(this).css('background-image');
bg = bg.replace('url(http://run.plnkr.co/cybkjF7HN9sYH3oS/','').replace(')','');
alert(bg);
});
我知道這是不是所有的情況下最好的正則表達式,但你明白了吧。
/* Explaining:
/regex here/
[^\/]+ ---> will match anything before a/(https:)
\/\/ ---> the // after https:
[^\/]+ ---> will match anything before/(www.example.com)
\/ ---> will match/
(.*) ---> the rest of url (that you want)
So, you need to get the [1] index of the returned array.
*/
"http://www.example.com/folder/bg.jpg".match(/[^\/]+\/\/[^\/]+\/(.*)/)[1]
將返回: 「文件夾/ bg.jpg」
爲什麼你需要的CSS樣式計算返回相對路徑? –
+1 @A。狼。除此之外,如果你想爲其他元素重用背景圖片,絕對可以用絕對路徑來實現。 –
它應該是計算圖像主色的函數的輸入參數。當頁面加載時,具有背景圖像的div會根據背景圖像接收背景顏色。 – tom