如何將返回的函數值存儲在'x'中?我需要這個,因爲我想在圖像上使用懸停功能,並且各圖像的src會有所不同。jquery變量訪問html
<script>
var x;
$(document).ready(function(){$(":image").attr("src");
alert(x);
});
</script>
</head>
<body>
<form action="">
Name: <input type="text" name="user"><br>
Password: <input type="password" name="password"><br>
Compatible: <input type="image" src="compatible_ie.gif" width="31" height="30">
</form>
什麼是你想真正做? 'x'甚至沒有設置! ( –
)這個函數什麼也沒有返回,無論如何,你想追加那個變量, – super
'var x = $(「:image」)。attr(「src」);'如果我想得到你想要的結果 – Igle