我有一個jquery函數,它有許多圖像ojbect的url。 我怎樣才能得到使用JavaScript的圖像的網址。 我希望做一個測試的網址使用javascript從jquery獲取圖像url
if url=condition {//do something...
你可以找到例子代碼的下方。
$(document).ready(function() {
$(function() {
$("#show_banners").showcase({
css: {
"margin-left": "auto",
"margin-right": "auto"
},
animation: {
type: "fade",
interval: 4500,
speed: 1800
},
images: [{
url: "../images/content/example1.jpg",
description: "example1",
target: "_self",
link: ""
}, {
url: "../images/content/example2.jpg",
description: "example2",
target: "_self",
link: ""
}, {
url: "../images/content/example3.jpg...
DIV的ID是show_banners
。
你究竟需要什麼? – geevee
我想使用javascript提取當前圖像的網址。 – user2878048