JQuery中html()和val()的用法區別
Example:
...
//定義JSON名稱/值對
var JSONObject = {
"name":"xrd",
"age":24,
"phone":"123"
};
//用含參的html()設定每個匹配元素的html內容,返回一個string
$("jname").html(JSONObject.name);
$("jage").html(JSONObject.age);
$("jphone").html(JSONObject.phone);
...
Name:
Age:
Phone:
這個時候就只能用JQery的html()方法,比如$("jname").html(JSONObject.name);對ID為jname的html標籤內設定string型別的內容,而帶參的val()方法是設定每一個匹配的元素的值,返回一個JQuery的物件,如:
$("input").val("hello world!");
結果是文字框裡顯示hello world!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4328/viewspace-2813296/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- jQuery html(),text(),val()區別jQueryHTML
- jQuery的html()和text()區別jQueryHTML
- XML和HTML的主要區別、 jQuery 能做什麼?JavaScript中的“=、==、===”區別?XMLHTMLjQueryJavaScript
- jquery中prop和attr的區別jQuery
- Jquery中attr和prop的區別jQuery
- JS中的!=、== 、!==、=== 的用法和區別JS
- 在Python中,val、exec和 compile 有什麼區別?PythonCompile
- js中!和!!的區別與用法JS
- jquery $(this) 和this的區別jQuery
- JQuery this和$(this)的區別jQuery
- jQuery中css()和attr()方法的區別jQueryCSS
- Mybatis中updateByPrimaryKeySelective和updateByPrimaryKey的用法區別MyBatis
- Linq中 AsQueryable(), AsEnumerable()和ToList()的區別和用法
- C++中break和continue的用法和區別C++
- PHP 中 bind 的用法 self 和 static 的區別PHP
- jquery prop和attr的區別jQuery
- jquery中append、prepend, before和after方法的區別jQueryAPP
- Linux中&&和&,|和||用法及區別詳解!Linux
- jQuery的AJAX請求中contentType和dataType的區別jQuery
- 使用jquery和使用框架的區別jQuery框架
- Rust 中 *、&、mut、&mut、ref、ref mut 的用法和區別Rust
- SQLserver-MySQL的區別和用法ServerMySql
- Python中threading的join和setDaemon的區別及用法[例子]Pythonthread
- jquery中$.get()提交和$.post()提交有區別嗎?jQuery
- select into from 和 insert into select 的用法和區別
- text/html和text/plain的區別HTMLAI
- viewflow在html和body的區別ViewHTML
- jQuery中onload與ready區別jQuery
- Python中read()、readline()和readlines()三者間的區別和用法Python
- button 和input 的區別及在表單form中的用法ORM
- jquery中dom節點操作方法empty和remove的區別jQueryREM
- window.onload()函式和jQuery中的document.ready()區別函式jQuery
- jQuery實戰之 attr() 和 prop() 的區別jQuery
- jquery Promise和ES6 Promise的區別jQueryPromise
- docment.getelementbyid 和jquery裡的$(#'id')區別jQuery
- axios,Ajax,jQuery ajax,axios和fetch的區別iOSjQuery
- python中 os._exit() 和 sys.exit(), exit(0)的用法和區別Python
- jquery中append()方法與after()方法的區別jQueryAPP