ホームページ ウェブフロントエンド jsチュートリアル javascript xml は、データ ソース_javascript スキルのドロップダウン ボックス コントロールです。

javascript xml は、データ ソース_javascript スキルのドロップダウン ボックス コントロールです。

May 16, 2016 pm 06:50 PM
javascript xml 情報元

たとえば、入力ボックスに Zhang San、Changsha、または Hunan と入力すると、Zhang San が表示され、「18」と入力すると、Zhang San と Li Si が同時に表示されます。テスト データ ソースは次のとおりです。 :

コードをコピー コードは次のとおりです:



s1
Zhang San

市>
学生>
;
s2
李思
武漢都市> ;

学生>
s3
;/名前>









>
//------------------------------------------ DropDownListx.js----------
function DropDownListx(parent,id)
{
this.id = id; var i;
var me = this;
var e = this.parent;
var x = e .offsetLeft;
this.text = e.value;
while (e = e.offsetParent)
{
y = e.offsetTop;
x = e.offsetLeft; >this.parentInfo = {x:0,y:0};
this.parentInfo.x = x;
//外観
this.parent.offsetWidth;
this.height = 150;
this.visibility = "hidden";//data属性として表現されますが、node
this.mainText = "";//表示するフィールドの名前
this.mainValue = "";//のフィールドの名前でも表現できます。返される値
this.selectedIndex = -1;//選択されたインデックス
this.mouseoverIndex = -1;//マウスホバー時のインデックス
this.mouseoutIndex = -1;//マウスが離れるときのインデックス
this.selectedValue = "";
this.value = "";
this.text = ""; .drawed = false; // 再描画されたかどうかを意味します。
this.table = null; (i = 6;i>0; i--)
{
try
{
this.dataSource = new ActiveXObject("MSXML2.DOMDocument." i ".0"); >break;
}
catch(ex1){;};
catch(ex2){;}; >this.dataSource.setProperty(" SelectionLanguage ", "XPath");
var sh = function(){if(me.visibility == "hidden")me.show();}; parent.attachEvent("onfocus", function (){window.setTimeout(sh,100);});
this.parent.attachEvent("onchange",function(){me.filter(me.parent.value) );});
this .parent.attachEvent("onkeyup",function(){me.filter(me.parent.value);});
this.parent.attachEvent("onclick",function) (){if(event.button = = "1")window.setTimeout(sh,10);});
this.parent.style.cursor = "hand"
//イベント
this.onSelected=null;
this.onmouseout = null;
window.document.attachEvent("onclick",function()
{
//はい おそらく e が一番上にないので、その領域を見つけます
if(event.x < me.parentInfo.x ||
event.x > me.parentInfo. x me.parent.offsetWidth ||
event.y < me.parentInfo.y ||
event.y > me.parent.offsetHeight)
{
if (me.visibility == "visible " )
me.hide();
}
});
}
//親の位置が変わる可能性があるため、位置を再取得します
DropDownListx.prototype.getPosition=function ( )
{
var e = this.parent;
var x = e.offsetLeft; e.offsetParent)
{
y = e.offsetTop;
x = e.offsetLeft;
this.parentInfo = {x:0,y:0}; this.parentInfo.x = x;
this.parentInfo.y = y;
this.width = this.parent.offsetWidth;
//リストを描画します
DropDownListx.prototype .show=function()
{
this.getPosition();
var me = this;
// div を描画します
var divid = this.id "_div_" this.parent .id;
var d = document.getElementById(divid);
if(d==null)
d = document.createElement("div"); .position = "絶対";
d.style.borderLeft = "黒の 1px 溝";
d.style.borderTop = "黒の 1px 溝"; "黒の 1 ピクセルの溝";
document.body.appendChild(d);
d.style.borderBottom = "黒の 1 ピクセルの溝"; d.style.backgroundColor = "白";
d.style.left = this.parentInfo.x "px";
if(document.body.clientHeight < this.parentInfo.y this.parent.offsetHeight this.height)
d .style.top = (this.parentInfo.y - this.height) "px";
else
d.style.top = (this.parentInfo.y ( this. parent.offsetHeight=="" ? 20:this.parent.offsetHeight)) "px";
d.style.overflowX = "hidden";
d.style.overflowY = "auto"; d.style.zIndex = 999;
d.style.visibility = "visible";
this.visibility = "visible"; listData();
this ._selectByName(this.parent.value);
DropDownListx.prototype.listData=function()
{
var e = this.parent; >varbase = this;
//データを表示します
if(this.nodeList == null)
this.nodeList = this.dataSource.documentElement.childNodes;
var str="";
for(var i = 0;i{
var text = (base.attributed?this.nodeList.item(i).getAttribute(this.mainText):this.nodeList.item(i).selectSingleNode(this. mainText).text);
str = str "
";
str = "
" テキスト "
";
var div = document.getElementById(this.id "_div_" e.id);
div.innerHTML = str;
var table = document.getElementById(this.id "_table_" e.id);
this.table = テーブル;
if(table.offsetHeight < this.height)
div.style.height = table.offsetHeight 3;
else
div.style.height = this.height 3;
div.style.width = table.offsetWidth;
for(var j = 0;j{
var d = document.getElementById(this.id "_td_" j "_" e.id );
d.attachEvent('onclick',function()
{
var _td = document.getElementById(base.id "_td_"base.selectedIndex "_" e.id);
if( _td)
{
_td.style.backgroundColor = "";
}
base.selectedIndex = events.srcElement.parentElement.rowIndex; 🎜>document.getElementById(base.id "_div_"base.parent.id ).style.visibility="hidden";
base.selectedValue = (base.attributed?base.nodeList.item(base.selectedIndex) getAttribute(base.mainValue):base.nodeList.item(base.selectedIndex).selectSingleNode(base.mainValue).text);
base.selectedText = (base.attributed?base.nodeList.item(base.selectedIndex) .getAttribute(base.mainText):base.nodeList.item(base.selectedIndex).selectSingleNode(base.mainText).text); >if(base.onSelected != null)
base.onSelected.apply(base);
return
};
d.onmouseover=function()
{
base.mouseoverIndex =parseInt(event.srcElement.id.split("_td_")[1].split("_")[0]);
試してください
{
event.srcElement.style.backgroundColor='gray';
event.srcElement.style.color='white';
e.value =event.srcElement.innerText;
if(base.onmouseover != null)
base.onmouseover.apply(base);
}
キャッチ(例){};
};
d.onmouseout = function()
{
base.mouseoutIndex = parseInt(event.srcElement.id.split("_td_")[1].split("_")[0]);
if(event.srcElement.id ==base.id "_td_"base.selectedIndex "_" e.id)
{
event.srcElement.style.backgroundColor='red';
event.srcElement.style.color='blue';
}
else
{
event.srcElement.style.backgroundColor='';
event.srcElement.style.color='';
}
if(base.onmouseout != null)
base.onmouseout.apply(base);
}
}
this.drawed = true;
}
DropDownListx.prototype.hide=function()
{
var d = document.getElementById(this.id "_div_" this.parent.id);
if(d)
d.style.visibility = "hidden";
this.visibility = "非表示";
this._select(this.selectedIndex);// 存在するデータを防ぐため、要先選択
this.nodeList = this.dataSource.documentElement.childNodes;
if(this.onhide != null)
this.onhide.apply(this);
}
DropDownListx.prototype.setSource=function(d)
{
this.dataSource.loadXML(d.xml);
this.nodeList = d.documentElement.childNodes;
this.drawed = false;
}
DropDownListx.prototype.setChildNodes=function(nodes)
{
this.dataSource.loadXML(" <オプション>");
var ノード = this.dataSource.documentElement;
for(var i = 0;i{
var opt = doc.createNode(1,"option","");
var r = nodes.item(i).childNodes
for(var j = 0;j{
var att = doc.createNode(1,r. item(j).nodeName,"");
att.text = r.item(j).text;
opt.appendChild(att);
}
node.appendChild(opt);
}
this.drawed = false;
}
DropDownListx.prototype.filter=function(text)
{
if(text==null || text =="")
{
this.reset() ;
}
else
{
var _text = text.split(" ");
var str = "./*[contains(.,'" _text[0] "')";
for(var i=1;i<_text.length>{
str = str " and contains(.,'" _text[i] "')"
}
str = str "]";
this.nodeList = this.dataSource.documentElement.selectNodes(str);
}
this.listData();
}
// に基づく、テスト中のノードの子ノードの値
DropDownListx.prototype.getNodeValue=function(nodeName)
{
if(nodeName == null || nodeName == "")
この値を返します;
return (this.attributed?this.nodeList.item(this.selectedIndex).getAttribute(nodeName):this.nodeList.item(this.selectedIndex).selectSingleNode(nodeName).text);
}
DropDownListx.prototype.reset=function()
{
this.nodeList = this.dataSource.documentElement.childNodes;
var _td = document.getElementById(this.id "_td_" this.selectedIndex "_" this.parent.id);
if(_td)
{
_td.style.backgroundColor = "";
_td.style.color = "";
}
this.selectedIndex = -1;
this.selectedValue = "";
this.selectedText = "";
this.value = "";
this.text = "";
this.parent.value = "";
}
DropDownListx.prototype.select=function(index)
{
if(index == -1)
this.reset();
else
{
var _td = document.getElementById(this.id "_td_" this.selectedIndex "_" this.parent.id);
if(_td)
{
_td.style.backgroundColor = "";
_td.style.color = "";
}
this.nodeList = this.dataSource.documentElement.childNodes;
this.selectedIndex =index;//被選中のインデックス
this.selectedValue = this.attributed?this.nodeList.item(index).getAttribute(this.mainValue):this.nodeList.item(index ).selectSingleNode(this.mainValue).text;
this.selectedText = this.attributed?this.nodeList.item(index).getAttribute(this.mainText):this.nodeList.item(index).selectSingleNode(this.mainText).text;
this.value = this.selectedValue;
this.text = this.selectedText;
this.parent.value = this.selectedText;

{
this.table.rows.item(index).cells.item(0).focus(); を試してください。
this.table.rows.item(index).cells.item(0).style.backgroundColor = "red";
this.table.rows.item(index).cells.item(0).style.color = "青";
this.parent.focus();
}catch(ex){}
if(this.onSelected != null)
this.onSelected.apply(this);
}
}
DropDownListx.prototype.selectByName=function(name)
{
if(name == null || name == "")
{
this .reset();
戻る;
}
for(var i = 0;i{
var _name = this.attributed?this.nodeList.item(i).getAttribute(this .mainText):this.nodeList.item(i).selectSingleNode(this.mainText).text;
if(_name == name) ブレーク;
}
if(i != this.nodeList.length)
{
this.select(i);
}
else
this.reset();
}
DropDownListx.prototype.selectByValue=function(value)//不響大会のサブ本
{
if(value == null || value == "")
{
this.reset();
戻る;
}
for(var i = 0;i{
var _value = this.attributed?this.nodeList.item(i).getAttribute(this .mainValue):this.nodeList.item(i).selectSingleNode(this.mainValue).text;
if(_value == value) ブレーク;
}
if(i != this.nodeList.length)
{
this.select(i);
}
else
this.reset();
}
DropDownListx.prototype._select=function(index)//不響大会のサブ本
{
if(index == -1)
this.reset();
else
{
var _td = document.getElementById(this.id "_td_" this.selectedIndex "_" this.parent.id);
if(_td)
{
_td.style.backgroundColor = "";
_td.style.color = "";
}
//this.nodeList = this.dataSource.documentElement.childNodes;
this.selectedIndex =index;//被選中のインデックス
this.selectedValue = this.attributed?this.nodeList.item(index).getAttribute(this.mainValue):this.nodeList.item(index ).selectSingleNode(this.mainValue).text;
this.selectedText = this.attributed?this.nodeList.item(index).getAttribute(this.mainText):this.nodeList.item(index).selectSingleNode(this.mainText).text;
this.value = this.selectedValue;
this.text = this.selectedText;
this.parent.value = this.selectedText;

{
this.table.rows.item(index).cells.item(0).focus(); を試してください。
this.table.rows.item(index).cells.item(0).style.backgroundColor = "red";
this.table.rows.item(index).cells.item(0).style.color = "青";
this.parent.focus();
}catch(ex){}
}
}
DropDownListx.prototype._selectByName=function(name)//不響雄イベントの副本
{
if(name == null || 名前 == "")
{
this.reset();
戻る;
}
for(var i = 0;i{
var _name = this.attributed?this.nodeList.item(i).getAttribute(this .mainText):this.nodeList.item(i).selectSingleNode(this.mainText).text;
if(_name == name) ブレーク;
}
if(i != this.nodeList.length)
{
this._select(i);
}
else
this.reset();
}
DropDownListx.prototype._selectByValue=function(value)//不響雄イベントのサブ本
{
if(value == null || value == "")
{
this.reset();
戻る;
}
for(var i = 0;i{
var _value = this.attributed?this.nodeList.item(i).getAttribute(this .mainValue):this.nodeList.item(i).selectSingleNode(this.mainValue).text;
if(_value == value) ブレーク;
}
if(i != this.nodeList.length)
{
this._select(i);
}
else
this.reset();
}
//----------------------------------------------------- ----DropDownListx-vsdoc.js------------------------
///
function DropDownListx(parent, id)
{
///
/// 自定的下拉框类
///

///
///
/// 下柆框的父控件,只能是文本输入框元素;
///
///
///
/// 下拉框のIDの文章
///
}
DropDownListx.prototype =
{
getPosition: function()
{
///
/// Re-obtain the position of the drop-down box because of the position of the parent May change
///

},
show: function()
{
///
/// Show drop-down box
///

},
listData: function()
{
///
/// Draw drop-down box
///

},
hide: function()
{
///
/// Hide drop-down box
///

},
setSource: function(d)
{
///
/// Set the drop-down box xml data source
// /

///
/// The xml data source of the drop-down box to be specified
/// < /param>
},
setChildNodes: function(nodes)
{
///
/// Set the drop-down box xml data source
/// < ;/summary>
///
/// The xml node set of the drop-down box to be specified
/// },
filter: function(text)
{
///
/// Globally filter the drop-down box
///
///
/// The text to be found
///
},
getNodeValue: function(nodeName)
{
///
/// Returns the value of the child node corresponding to the selected node
///

///
/// Child node name
///
},
reset: function()
{
///
/// Reset drop-down box
///

},
select: function( index)
{
///
/// Select by index
///

///
/// Index value
///
},
selectByName:function(name)
{
// /
/// Select by text
///

///
/// The text to be selected, this value will be compared with the node corresponding to the mainText attribute
///
},
selectByValue:function(value)
{
///
/// Select by value
///

///
/// The value to be selected, this value will be compared with the node corresponding to the mainValue attribute
///
},
_select:function(index )
{
///
/// Select by index, the select method does not respond to a copy of the event
///

///
/// Index value
///
},
_selectByName:function(name)
{
///
/// Select by text, the selectByName method does not respond to the copy of the event
///

///
/// The text to be selected, this value will be compared with the node corresponding to the mainText attribute
///
},
_selectByValue:function(value)
{
///
/// Select by value, the selectByValue method does not respond to the copy of the event
/// < ;/summary>
///
/// The value to be selected, this value will be compared with the node corresponding to the mainValue attribute
///
}
}
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。

ホットAIツール

Undresser.AI Undress

Undresser.AI Undress

リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover

AI Clothes Remover

写真から衣服を削除するオンライン AI ツール。

Undress AI Tool

Undress AI Tool

脱衣画像を無料で

Clothoff.io

Clothoff.io

AI衣類リムーバー

AI Hentai Generator

AI Hentai Generator

AIヘンタイを無料で生成します。

ホットツール

メモ帳++7.3.1

メモ帳++7.3.1

使いやすく無料のコードエディター

SublimeText3 中国語版

SublimeText3 中国語版

中国語版、とても使いやすい

ゼンドスタジオ 13.0.1

ゼンドスタジオ 13.0.1

強力な PHP 統合開発環境

ドリームウィーバー CS6

ドリームウィーバー CS6

ビジュアル Web 開発ツール

SublimeText3 Mac版

SublimeText3 Mac版

神レベルのコード編集ソフト(SublimeText3)

Power BI に接続できません。接続中にエラーが発生しました。 Power BI に接続できません。接続中にエラーが発生しました。 Feb 18, 2024 pm 05:48 PM

PowerBI は、XLS、SQL、または Excel ファイルのデータ ソースに接続できない場合に問題が発生することがあります。この記事では、この問題を解決するために考えられる解決策を検討します。この記事では、接続プロセス中にエラーや接続障害が発生した場合の対処方法について説明します。したがって、この問題に直面している場合は、読み続けてください。役立つ提案がいくつか提供されます。 PowerBI のゲートウェイ接続エラーとは何ですか? PowerBI のゲートウェイ エラーは、多くの場合、データ ソース情報と基になるデータセットの不一致によって発生します。この問題を解決するには、ローカル データ ゲートウェイで定義されたデータ ソースが正確であり、PowerBI デスクトップで指定されたデータ ソースと一貫性があることを確認する必要があります。 PowerBI に接続できません

PowerPoint を使用して XML ファイルを開くことはできますか? PowerPoint を使用して XML ファイルを開くことはできますか? Feb 19, 2024 pm 09:06 PM

XML ファイルは PPT で開くことができますか? XML、Extensible Markup Language (Extensible Markup Language) は、データ交換とデータ ストレージで広く使用されている汎用マークアップ言語です。 HTML と比較して、XML はより柔軟であり、独自のタグとデータ構造を定義できるため、データの保存と交換がより便利で統一されます。 PPT (PowerPoint) は、プレゼンテーションを作成するために Microsoft によって開発されたソフトウェアです。包括的な方法を提供します。

WebSocket と JavaScript を使用してオンライン音声認識システムを実装する方法 WebSocket と JavaScript を使用してオンライン音声認識システムを実装する方法 Dec 17, 2023 pm 02:54 PM

WebSocket と JavaScript を使用してオンライン音声認識システムを実装する方法 はじめに: 技術の継続的な発展により、音声認識技術は人工知能の分野の重要な部分になりました。 WebSocket と JavaScript をベースとしたオンライン音声認識システムは、低遅延、リアルタイム、クロスプラットフォームという特徴があり、広く使用されるソリューションとなっています。この記事では、WebSocket と JavaScript を使用してオンライン音声認識システムを実装する方法を紹介します。

WebSocket と JavaScript: リアルタイム監視システムを実装するための主要テクノロジー WebSocket と JavaScript: リアルタイム監視システムを実装するための主要テクノロジー Dec 17, 2023 pm 05:30 PM

WebSocketとJavaScript:リアルタイム監視システムを実現するためのキーテクノロジー はじめに: インターネット技術の急速な発展に伴い、リアルタイム監視システムは様々な分野で広く利用されています。リアルタイム監視を実現するための重要なテクノロジーの 1 つは、WebSocket と JavaScript の組み合わせです。この記事では、リアルタイム監視システムにおける WebSocket と JavaScript のアプリケーションを紹介し、コード例を示し、その実装原理を詳しく説明します。 1.WebSocketテクノロジー

WebSocketとJavaScriptを使ったオンライン予約システムの実装方法 WebSocketとJavaScriptを使ったオンライン予約システムの実装方法 Dec 17, 2023 am 09:39 AM

WebSocket と JavaScript を使用してオンライン予約システムを実装する方法 今日のデジタル時代では、ますます多くの企業やサービスがオンライン予約機能を提供する必要があります。効率的かつリアルタイムのオンライン予約システムを実装することが重要です。この記事では、WebSocket と JavaScript を使用してオンライン予約システムを実装する方法と、具体的なコード例を紹介します。 1. WebSocket とは何ですか? WebSocket は、単一の TCP 接続における全二重方式です。

JavaScript と WebSocket を使用してリアルタイムのオンライン注文システムを実装する方法 JavaScript と WebSocket を使用してリアルタイムのオンライン注文システムを実装する方法 Dec 17, 2023 pm 12:09 PM

JavaScript と WebSocket を使用してリアルタイム オンライン注文システムを実装する方法の紹介: インターネットの普及とテクノロジーの進歩に伴い、ますます多くのレストランがオンライン注文サービスを提供し始めています。リアルタイムのオンライン注文システムを実装するには、JavaScript と WebSocket テクノロジを使用できます。 WebSocket は、TCP プロトコルをベースとした全二重通信プロトコルで、クライアントとサーバー間のリアルタイム双方向通信を実現します。リアルタイムオンラインオーダーシステムにおいて、ユーザーが料理を選択して注文するとき

JavaScript と WebSocket: 効率的なリアルタイム天気予報システムの構築 JavaScript と WebSocket: 効率的なリアルタイム天気予報システムの構築 Dec 17, 2023 pm 05:13 PM

JavaScript と WebSocket: 効率的なリアルタイム天気予報システムの構築 はじめに: 今日、天気予報の精度は日常生活と意思決定にとって非常に重要です。テクノロジーの発展に伴い、リアルタイムで気象データを取得することで、より正確で信頼性の高い天気予報を提供できるようになりました。この記事では、JavaScript と WebSocket テクノロジを使用して効率的なリアルタイム天気予報システムを構築する方法を学びます。この記事では、具体的なコード例を通じて実装プロセスを説明します。私たちは

簡単な JavaScript チュートリアル: HTTP ステータス コードを取得する方法 簡単な JavaScript チュートリアル: HTTP ステータス コードを取得する方法 Jan 05, 2024 pm 06:08 PM

JavaScript チュートリアル: HTTP ステータス コードを取得する方法、特定のコード例が必要です 序文: Web 開発では、サーバーとのデータ対話が頻繁に発生します。サーバーと通信するとき、多くの場合、返された HTTP ステータス コードを取得して操作が成功したかどうかを判断し、さまざまなステータス コードに基づいて対応する処理を実行する必要があります。この記事では、JavaScript を使用して HTTP ステータス コードを取得する方法を説明し、いくつかの実用的なコード例を示します。 XMLHttpRequestの使用

See all articles