<div class="testdiv">1</div>
嗨,大家好我想選擇testdiv值1。jquery select div值
實施例:
VAR testdiv =( '.testdiv')VAL(); =這個變量需要等於1
<div class="testdiv">1</div>
嗨,大家好我想選擇testdiv值1。jquery select div值
實施例:
VAR testdiv =( '.testdiv')VAL(); =這個變量需要等於1
你真的應該閱讀documentation對於這一點,這是非常基本的。
var testdiv = $('.testdiv').html();
或者
var testdiv = $('.testdiv').text();
.val()
爲輸入元件。
而且一定要包裝你的代碼:
$(document).ready(function() {
// Handler for .ready() called.
});
或將代碼中的元素已經被渲染到頁面後。
你需要把$
在函數的jQuery ... 面前你也想用文字(),而不是VAL()。
是這樣的...
var testdiv = $('.testdiv').text();
這裏有一個演示: http://jsfiddle.net/BUpxw/
下面的兩個答案都是正確的,但您應該對jQuery的工作原理有一個基本的瞭解。你有沒有在你的頁面上包含jQuery?你知道jQuery函數應該在它們前面有'$'嗎?等等? – Charlie74