jQuery

JSコード:
$(“#btn1”).click(function(){
$(“#test1”).text(function(i,orgTxt){
return & ...

jQuery

書式
$(セレクタ).tabs();
使用例

<link rel="stylesheet" href=""><div id="cft"> <ul> <li>< ...

jQuery

構文
$(divのclass名).height()
htmlコード

<div class="tCa"> <table class="laytbl" <tbody> <tr> ...

jQuery

1.htmlコード
<div class=”changfa”>data–11</div>
<div class=”changfa” ...

jQuery

JSコード
$(“#testForm input, #testForm select, #testForm textarea”).each(function(i, m) {
$(m.change ...

jQuery

サンプルコード

<div id="cftDiv" style="display:none;"><p>ダイアログのボタン</p></div><input type="butto ...

jQuery

1.htmlコード
<div>項目AA</div>
<div>項目BB</div>
<div>項目CC</div>

2.JSコ ...

jQuery

①htmlコード
<div>test data AA</div>
<div>test data BB</div>
<div>test data CC& ...

jQuery

①属性の現在値を取得する
$(‘#cft’).attr(‘width’);

②既存の属性を削除する
//title属性を削除
$(‘#cf ...

jQuery

①htmlコード
<ul>
<li>test data 11</li>
<li>test data 22</li>
<li>tes ...

jQuery

構文
scrollTop(スクロール位置)
水平方向のスクロール位置を返します。
htmlコード

<div class="cft"> <table class="laytbl" < ...

jQuery

1.Booleanis(expr)
htmlコード
<form><input type=”checkbox”/></form>
JSコード
$ ...

jQuery

構文
$.trim(str)
jQuery.trim()の引数には文字列を指定します。

サンプルコード
var cft = ‘ this is a test ‘;
/ ...

jQuery

説明
jQuery.trim(str)
文字列の先頭と末尾から、空白を除去します。
渡された文字列から、正規表現で空白と見做されるものを除去します。
そのため、改行コードや全角のブランクであっても、空白 ...

jQuery

htmlコード

<ul> <li class="cft">list item 1</li> <li>list item 2 <ul> <li><div ...

jQuery

サンプルコード

$(function() { $('#testFind').click(function() {//find()で「#cft」内にすべての「a」要素を取得する $('#cft').find('a').css('c ...

jQuery

①htmlコード
<a id=”fileDL” href=”#” >ダウンロード
</a>

②JSコード
$(‘a ...

jQuery

1.htmlコード
<input type=”text” name=”emp” value=”村上”>
<input type= ...