我想讨论如何加入mysql、php和javascript,以便创建一个突出显示两个文本的高级复选框列表

nfs0ujit  于 2021-06-25  发布在  Mysql
关注(0)|答案(0)|浏览(101)

我想讨论如何加入mysql、php和javascript,以便创建一个突出显示两个文本的高级复选框列表。
我想把圣经+(斯特朗的)和谐放在一起。
我进退两难。我的db表中有一列包含文本,另一列包含每个单词的强号。我在另一个专栏里列出了与之相关的所有其他强者的数字。但我的问题是,当我寻找亚当这个名字的意义时,它指出了“人”的意思。但当我寻找人的反义或反义时,它并没有指向亚当。我想让这成为可能。
例如,单词亚当,以东,亚当(人),阿达玛(地),甚至可能大坝(血)应该是相关的,在清单中的选择,它会突出在两个研究文本之间指定的颜色,因为我想知道有多少共同性之间存在的两个文本我的研究。
到目前为止,我已经成功地将文本(文本列)与strong的一致性(strong的列)进行了编码,但没有将相关的strong的数字包含在db表的一个单独的列中。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>1Chronicles 1 and 1Chronicles 13 from the King James with Strong's Concordance</title>

<script>  

var js_newStrongsResult = ["H251","H776","H3117","H3478","H4191","H4714","H5221","H5892","H6440","H7586","H8034"]; //$php_array

var js_colors = ["red","blue","green","orange","#966","#96C","#999"];

var js_strongs_colors = [
['0','H251','red', document.getElementsByClassName("class_H251").length], 

['1','H776','blue', document.getElementsByClassName("class_H776").length], 

['2','H3117','green', document.getElementsByClassName("class_H3117").length], 

['3','H3478','orange', document.getElementsByClassName("class_H3478").length]
]; 

//determine the colors to the words and writes them in the empty div tags
function highlightThem(){
	document.getElementById("checkdiv1").innerHTML = '<label class="view_background" style="display: block;"><input id="rembold_1" type="checkbox" onClick="removeBoldness1(); removeBoldness2();" style="border: 1px solid #FFFFFF;" value="regular">Remove Boldness</label><br />\n<label class="view_background" style="display: block;"><input id="uncheck_verses" type="button" onClick="ClearAll1(); ClearAll2(); unselectAllVerses1(); unselectAllVerses2(); unhighlightThemAll(); ClearAllstrongs(); " style=\"width: 200px; border: 1px solid #FFFFFF; color: #060606;\" value=\"Uncheck Verses and Unhighlight\" /><br />\n';
	//var chkBox = document.getElementsByTagName("input");

	document.getElementById("txt0").innerHTML = "<table><tr><td>1Chronicles 1 and 1Chronicles 13:<br /><br />";

	var chkBox = document.getElementsByClassName("class_strongs"),
		strongsCheck = []; 

	for(i=0;i<chkBox.length;i++){
		var list = document.getElementsByClassName("class_"+chkBox[i].value);
		for(j=0;j<list.length;j++){
			if(chkBox[i].checked==true){
				list[j].style.color= js_colors[i];
				//list[j].style.color= "white";
				if(j==0){
					document.getElementById("txt0").innerHTML += "<span style=\"color:"+js_colors[i]+"; font-weight: bold;\">"+chkBox[i].value+"</span> (mentioned <span style=\"font-weight: bold;\">"+list.length+"</span> times)"; //
                    //document.getElementById("txt0").innerHTML += "<br /><br />\n";
					if(i>0 || i<list.length-1){
						document.getElementById("txt0").innerHTML += ",<br />\n";
					}
				}

			}
		}
	}

	document.getElementById("txt0").innerHTML += "</td><td>";
	//in mentioning order
	document.getElementById("txt0").innerHTML += "<br /><br />1Chronicles 1 and 1Chronicles 13<br />in mentioning order:<br /><br />";
	var strongs_mentioned_colors_value_all = [];
	for(i=0;i<chkBox.length;i++){
		var list = document.getElementsByClassName("class_"+chkBox[i].value);
		for(j=0;j<list.length;j++){
			if(chkBox[i].checked==true){
				list[j].style.color= js_colors[i];
				//list[j].style.color= "white";
				if(j==0){
					var strongs_mentioned_colors_value = [js_colors[i], list.length, chkBox[i].value];
					strongs_mentioned_colors_value_all.push(strongs_mentioned_colors_value);
				}
			}
		}
	}

	//strongs_mentioned_colors_value_all.sort(function(a, b){return a-b});
	strongs_mentioned_colors_value_all.sort(function(a, b){return a[1]-b[1]});
	document.getElementById("txt0").innerHTML += "";
	for(a=0;a<strongs_mentioned_colors_value_all.length;a++){
		document.getElementById("txt0").innerHTML += "<span style=\"color:"+strongs_mentioned_colors_value_all[a][0]+"; font-weight: bold;\">"+strongs_mentioned_colors_value_all[a][2]+"</span> (mentioned <span style=\"font-weight: bold;\">"+strongs_mentioned_colors_value_all[a][1]+"</span> times),<br />";
	}
	document.getElementById("txt0").innerHTML += "<input class=\"class_button\" type=\"button\" name=\"clear\" onClick=\"ClearAllstrongs();\" style=\"width: 60px; border: 1px solid #FFFFFF; color: #060606;\" value=\"clear\"><br /><br />";
	document.getElementById("txt0").innerHTML += "</td></tr>";
}

function unhighlightThem(){
	//var chkBox = document.getElementsByTagName("input");
	var chkBox = document.getElementsByClassName("class_strongs");

	for(i=0;i<chkBox.length;i++){
		var list = document.getElementsByClassName("class_"+chkBox[i].value);
		if(chkBox[i].checked==false){
			document.getElementById("txt0").innerHTML = "";
			for(j=0;j<list.length;j++){
				list[j].style.color= "black";
				//list[j].style.color= "white";
			}
		}
	}
	//refreshes
	highlightThem();	
}
//highlighting strongs 
/* class_strongs are all the strongs numbers in common and class_H are all the a tags which have the particular strongs numbers grouped together */
function highlightThemAll(){
	//var chkBox = document.getElementsByTagName("input");
	var chkBox = document.getElementsByClassName("class_strongs");
	for(i=0;i<chkBox.length;i++){
		var list = document.getElementsByClassName("class_"+chkBox[i].value); //span
		for(j=0;j<list.length;j++){
			if(chkBox[i].checked==false){
				chkBox[i].checked=true;
			}
			if(chkBox[i].checked==true){
				list[j].style.color= js_colors[i];
				list[j].style.borderColor = "black"; //1px solid #FFFFFF;
				//list[j].style.color= "white";
			}
		}
	}
	//alert(chkBox[0].checked);
}

/*function addStrongs(){
	var strongsExtension = document.getElementById("otherstrongs").value.replace(" ", "").replace(" ", "");
	//alert(strongsExtension);
	window.open("index.php?b1=&c1=&b2=&c2=&addstrongs="+strongsExtension,'jav'); //,'width=400,height=300,resizable=yes'
}*/

//unhighlighting strongs
function unhighlightThemAll(){
	var chkBox = document.getElementsByClassName("class_strongs");

	for(i=0;i<chkBox.length;i++){
		var list = document.getElementsByClassName("class_"+chkBox[i].value);
		for(j=0;j<list.length;j++){
			if(chkBox[i].checked==true){
				chkBox[i].checked=false;
			}
			if(chkBox[i].checked==false){
				list[j].style.color= "black";
			}
		}
	}
	if(document.getElementById("id_all").checked==true){
		document.getElementById("id_all").checked=false;
	}
	if(document.getElementById("rembold_1").checked==true){
		document.getElementById("rembold_1").checked=false;
	}
}
//highlighting verses checkboxes of 1st text
function selectAllVerses1(){
	var chkBox = document.getElementsByClassName("name_verse_check_1");
	for(i=0;i<chkBox.length;i++){
		if(chkBox[i].checked==false){
			chkBox[i].checked=true;
		}
	}
	copyTextToTxt();
}
//unhighlighting verses checkboxes
function unselectAllVerses1(){
	var chkBox = document.getElementsByClassName("name_verse_check_1");
	for(i=0;i<chkBox.length;i++){
		if(chkBox[i].checked==true){
			chkBox[i].checked=false;
		}
	}
}
//highlighting verses checkboxes of 2nd text
function selectAllVerses2(){
	//var chkBox = document.getElementsByTagName("input");
	var chkBox = document.getElementsByClassName("name_verse_check_2");
	for(i=0;i<chkBox.length;i++){
		var list = document.getElementsByClassName("class_"+chkBox[i].value); //span
		if(chkBox[i].checked==false){
			chkBox[i].checked=true;
		}
		copyTextToTxt2();
	}
}
//unhighlighting verse checkboxes
function unselectAllVerses2(){
	var chkBox = document.getElementsByClassName("name_verse_check_2");

	for(i=0;i<chkBox.length;i++){
		if(chkBox[i].checked==true){
			chkBox[i].checked=false;
		}
	}
}
function removeBoldness1(){
	var boldcheck = document.getElementsByClassName("class_txt_1");
	var bold_words_all = [];
	for(a=0;a<boldcheck.length;a++){
		if(boldcheck[a].style.color=="black" && boldcheck[a].style.fontWeight=="bold"){ //boldcheck[a].style.color=="black" && 
			var bold_words = [boldcheck[a].innerHTML, boldcheck[a].title];
			bold_words_all.push(bold_words);
			boldcheck[a].style="color: black; font-weight: regular;";
/*			boldcheck[a].style.color="black";
			boldcheck[a].style.fontWeight="regular";*/
		}
	}
}

function removeBoldness2(){
	var boldcheck = document.getElementsByClassName("class_txt_2");
	var bold_words_all = [];
	for(a=0;a<boldcheck.length;a++){
		if(boldcheck[a].style.color=="black" && boldcheck[a].style.fontWeight=="bold"){ //boldcheck[a].style.color=="black" && 
			var bold_words = [boldcheck[a].innerHTML, boldcheck[a].title];
			bold_words_all.push(bold_words);
			boldcheck[a].style="color: black; font-weight: regular;";
/*			boldcheck[a].style.color="black";
			boldcheck[a].style.fontWeight="regular";*/
		}
	}
}

function copyTextToTxt(){
	var divVerseClass = document.getElementsByClassName("div_class_1_verses");
	var chkVerseBoxClass = document.getElementsByClassName("name_verse_check_1");
	//var chkVerseBoxClass = document.getElementsByClassName("class_verse_2");
	document.getElementById("txt1").innerHTML = "<tr><td>";
	document.getElementById("txt1").innerHTML += '<a href="?b=1ch&amp;c=1&amp;t=KJV" style="font-weight: bold;" target="_blank">1Chronicles 1</a> - <a href="audio_video/popPlayer.cfm?type=kjv_n&amp;b=13&amp;c=1" style="font-weight: bold;" target="_blank">Listen</a><br /><br />';
	for(n=0;n<chkVerseBoxClass.length;n++){
		/*var divVerseClass.getElementByTagName("a").innerHTML;
		alert(divVerseClass.getElementByTagName("a").innerHTML);*/
		var num = n+1;
		var chkVerseBox = document.getElementsByClassName("div_1_verse_"+num);

		if(chkVerseBoxClass[n].checked==true){
			for(q=0;q<chkVerseBoxClass.length;q++){
				var atags = divVerseClass[n].getElementsByTagName("a");
				if(q==0){
					document.getElementById("txt1").innerHTML += "<span style=\"font-size: smaller; font-weight: bold; vertical-align: text-top;\" >"+divVerseClass[n].getElementsByTagName("a")[q].innerHTML+"</span> ";
				}
			}
			for(r=1;r<atags.length;r++){
				if(atags[r].style.color=="black"){
					document.getElementById("txt1").innerHTML += "<span class=\"class_txt_1\" style=\"color: black; font-weight: "+atags[r].style.fontWeight+";\" title=\""+atags[r].title+"\">"+atags[r].innerHTML+"</span>";
				}else{
					document.getElementById("txt1").innerHTML += "<span class=\"class_txt_1\" style=\"color: "+atags[r].style.color+"; font-weight: "+atags[r].style.fontWeight+";\" title=\""+atags[r].title+"\">"+atags[r].innerHTML+"</span>";
			}
			document.getElementById("txt1").innerHTML += "<br /><br />";
		}
	}
	document.getElementById("txt1").innerHTML += "<input class=\"class_button\" type=\"button\" name=\"clear\" onClick=\"ClearAll1();\" style=\"width: 60px; border: 1px solid #FFFFFF; color: #060606;\" value=\"clear\">";
	document.getElementById("txt1").innerHTML += "</td>";
}
function copyTextToTxt2(){
	var divVerseClass2 = document.getElementsByClassName("div_class_2_verses");
	var chkVerseBoxClass2 = document.getElementsByClassName("name_verse_check_2");
	document.getElementById("txt2").innerHTML = "<td>";
	document.getElementById("txt5").innerHTML = "[td]";
	document.getElementById("txt2").innerHTML += '<a href="?b=1ch&amp;c=13&amp;t=KJV" style="font-weight: bold;" target="_blank">1Chronicles 13</a><br /><br />';
	for(n=0;n<chkVerseBoxClass2.length;n++){
		var num = n+1;
		var chkVerseBox2 = document.getElementsByClassName("div_2_verse_"+num);
		if(chkVerseBoxClass2[n].checked==true){
			for(q=0;q<chkVerseBoxClass2.length;q++){
				var atags = divVerseClass2[n].getElementsByTagName("a");
				if(q==0){
					document.getElementById("txt2").innerHTML += "<span style=\"font-size: smaller; font-weight: bold; vertical-align: text-top;\" >"+divVerseClass2[n].getElementsByTagName("a")[q].innerHTML+"</span> ";

				}
			}
			for(r=1;r<atags.length;r++){
				if(atags[r].style.color=="black"){
					document.getElementById("txt2").innerHTML += "<span class=\"class_txt_2\" style=\"color: black; font-weight: "+atags[r].style.fontWeight+";\" title=\""+atags[r].title+"\">"+atags[r].innerHTML+"</span>";

				}else{
					document.getElementById("txt2").innerHTML += "<span class=\"class_txt_2\" style=\"color: "+atags[r].style.color+"; font-weight: "+atags[r].style.fontWeight+";\" title=\""+atags[r].title+"\">"+atags[r].innerHTML+"</span>";
   					if(atags[r].style.fontWeight=="bold"){

					}else{
												document.getElementById("txt5").innerHTML += "[URL=\""+atags[r].href+"\"][COLOR="+atags[r].style.color+"]"+atags[r].innerHTML+"[/COLOR][/URL]</span>";
					}					
				}

			}
			document.getElementById("txt2").innerHTML += "<br /><br />";

		}
	}
	document.getElementById("txt2").innerHTML += "<input class=\"class_button\" type=\"button\" name=\"clear\" onClick=\"ClearAll2();\" style=\"width: 60px; border: 1px solid #FFFFFF; color: #060606;\" value=\"clear\">";
	document.getElementById("txt5").innerHTML += "<input class=\"class_button\" type=\"button\" name=\"clear\" onClick=\"ClearAll2();\" style=\"width: 60px; border: 1px solid #FFFFFF; color: #060606;\" value=\"clear\">";
	document.getElementById("txt2").innerHTML += "</td></tr></table>";
	document.getElementById("txt5").innerHTML += "[/td][/tr][/table]";
}
function ClearAllstrongs(){
	var chkVerseBoxClass = document.getElementsByClassName("class_verse_1");
	//chkVerseBoxClass.checked = false;
	document.getElementById("txt0").innerHTML = "";
	for(j=0;j<chkVerseBoxClass.length;j++){
		if(chkVerseBoxClass[j].checked==true){
			chkVerseBoxClass[j].checked=false;
		}
	}
}
function ClearAll1(){
	var chkVerseBoxClass = document.getElementsByClassName("class_verse_1");
	//chkVerseBoxClass.checked = false;
	document.getElementById("txt1").innerHTML = "";
	document.getElementById("txt4").innerHTML = "";
	//var list = document.getElementsByClassName("class_"+chkBox[i].value); //span
	for(j=0;j<chkVerseBoxClass.length;j++){
		if(chkVerseBoxClass[j].checked==true){
			chkVerseBoxClass[j].checked=false;
		}
	}
}
function ClearAll2(){
	var chkVerseBoxClass2 = document.getElementsByClassName("class_verse_2");
	//chkVerseBoxClass2.checked = false;
	document.getElementById("txt2").innerHTML = "";
	document.getElementById("txt5").innerHTML = "";
	//var list = document.getElementsByClassName("class_"+chkBox[i].value); //span
	for(j=0;j<chkVerseBoxClass2.length;j++){
		if(chkVerseBoxClass2[j].checked==true){
			chkVerseBoxClass2[j].checked=false;
		}
	}
}

</script>
</head>
<body>
<table align="center" style="overflow: scroll;"><tr><td>
<table>
<tr><td valign="top" style="background-color: #FFFFFF; border: 1px solid #7A1010; color: #000000; font-weight: regular; height: 19px; padding: 0px 0px 0px 5px; text-align: left; width: 90px;">Strong's in common:<br /><br /><!----><div id="strongs_list" ><label class="checkbox-inline" style="display: block;">
				<input id="id_all" type="checkbox" onClick="if(this.checked){highlightThemAll(); highlightThem()}else{unhighlightThemAll(); unhighlightThem()};" style="border: 1px solid #FFFFFF;" value="all">all Strongs' in Common</label><br />
<label class="checkbox-inline" title="" style="width: 80px; height: 40px; display: block; font-weight: bold; color: red">
				<input id="id_0" class="class_strongs" type="checkbox" onClick="if(this.checked){highlightThem();}else{unhighlightThem();};" style="border: 1px solid #FFFFFF;" value="H251">[H251]
			</label><br />
<label class="checkbox-inline" title="" style="width: 80px; height: 40px; display: block; font-weight: bold; color: blue">
				<input id="id_1" class="class_strongs" type="checkbox" onClick="if(this.checked){highlightThem();}else{unhighlightThem();};" style="border: 1px solid #FFFFFF;" value="H776">[H776]
			</label><br />

</div></td>	<td id="td-id_1" style="background-color: #a9a9a9; border: 1px solid #7A1010; height: 118px; padding: 10px 10px 10px 10px; width: 169px;" valign="top">
<a href="?b=1ch&amp;c=1&amp;t=KJV" target="_blank">1Chronicles 1</a></span><br /><br />
<!---->
<label class="checkbox-inline" style="display: block;">
				<input id="id_all_1" class="verse_numbers" type="checkbox" onClick="if(this.checked){selectAllVerses1(); copyTextToTxt();}else{unselectAllVerses1(); ClearAll1()};" style="border: 1px solid #FFFFFF;" value="all">select all</label><div id="div_1_verse_1" class="div_class_1_verses" style="display: block;"><input id="id_1" class="name_verse_check_1" type="checkbox" onClick="if(this.checked){copyTextToTxt();}else{ClearAll1(); copyTextToTxt();};" style="border: 1px solid #FFFFFF;" value="0"><span class="verse_numbers" style="font-size: smaller; font-weight: bold; vertical-align: text-top;" ><a style="text-decoration: none; color: black;" href="kjv/1ch/1/1/" title="verify" target="_blank">1</a></span> <div id="div_verse_0" style=""><a class="class_0" ></a><a class="class_H121" href="?Strongs=H121&t=KJV"  title="[H121] - 'Adam - אָדָם: the same as אָדָם (H120)" style=" text-decoration: none; color: black;" target="_blank">Adam</a><a class="class_0" >,</a> 
<a class="class_0" > </a><a class="class_H8352" href="?Strongs=H8352&t=KJV" title="[H8352] - Sheth - ��שֵׁ: from שִׁית (H7896)" style="text-decoration: none; color: black;" target="_blank">Sheth</a><a class="class_0" >,</a> 
<a class="class_0" > </a><a class="class_H583" href="?Strongs=H583&t=KJV" title="[H583] - 'Enowsh - אֱנוֹשׁ: the same as אֱנוֹשׁ (H582)" style="text-decoration: none; color: black;" target="_blank">Enosh</a><a class="class_0" >,</a> 
</div>
</div>

	</td>
    <td id="td-id_2" style="background-color: #a9a9a9; border: 1px solid #7A1010; height: 118px; padding: 10px 10px 10px 10px; width: 169px;" valign="top">

<a href="?b=1ch&amp;c=13&amp;t=KJV" target="_blank">1Chronicles 13</a> - <a href="audio_video/popPlayer.cfm?type=kjv_n&amp;b=13&amp;c=13" target="_blank">Listen</a></span><br /><br />
<!---->
<label class="checkbox-inline" style="display: block;">
				<input id="id_all_2" class="verse_numbers2" type="checkbox" onClick="if(this.checked){selectAllVerses2(); copyTextToTxt2();}else{unselectAllVerses2(); ClearAll2()};" style="border: 1px solid #FFFFFF;" value="all">select all</label><div id="div_2_verse_1" class="div_class_2_verses" style="display: block;"><input id="id_1" class="name_verse_check_2" type="checkbox" onClick="if(this.checked){copyTextToTxt2();}else{ClearAll2(); copyTextToTxt2();};" style="border: 1px solid #FFFFFF;" value="0"><span class="verse_numbers2" style="font-size: smaller; font-weight: bold; vertical-align: text-top;" ><a style="text-decoration: none; color: black;" href="kjv/1ch/13/1/" title="verify" target="_blank">1</a></span> <div id="div2_verse_0" style=""><a class="class_0" >And </a><a class="class_H1732" href="?Strongs=H1732&t=KJV" title="[H1732] - David - �״דָּו�: from the same as דּוֹד (H1730)" style="text-decoration: none; color: black;" target="_blank">David</a><a class="class_0" ></a> 
<a class="class_0" > </a><a class="class_H3289" href="?Strongs=H3289&t=KJV" title="[H3289] - ya`ats - �׷יָע�: a primitive root" style="text-decoration: none; color: black;" target="_blank">consulted</a><a class="class_0" ></a> 
<a class="class_0" > with the </a><a class="class_H8269" href="?Strongs=H8269&t=KJV" title="[H8269] - sar - �׷שָׂר�: from שָׂרַר (H8323)" style="text-decoration: none; color: black;" target="_blank">captains</a><a class="class_0" ></a> 
<a class="class_0" > of </a><a class="class_H505" href="?Strongs=H505&t=KJV" title="[H505] - 'eleph - �׶אֶל�: prop, the same as אֶלֶף (H504)" style="text-decoration: none; color: black;" target="_blank">thousands</a><a class="class_0" ></a> 
<a class="class_0" > and </a><a class="class_H3967" href="?Strongs=H3967&t=KJV" title="[H3967] - me'ah - �׸מֵא�: " style="text-decoration: none; color: black;" target="_blank">hundreds</a><a class="class_0" >,</a> 
<a class="class_0" > <em>and</em> with every </a><a class="class_H5057" href="?Strongs=H5057&t=KJV" title="[H5057] - nagiyd - ��נָגִי: from נָגַד (H5046)" style="text-decoration: none; color: black;" target="_blank">leader</a><a class="class_0" >.</a> 
</div>
</div>
<br /><br />
<div id="div_2_verse_2" class="div_class_2_verses" style="display: block;"><input id="id_2" class="name_verse_check_2" type="checkbox" onClick="if(this.checked){copyTextToTxt2();}else{ClearAll2(); copyTextToTxt2();};" style="border: 1px solid #FFFFFF;" value="6"><span class="verse_numbers2" style="font-size: smaller; font-weight: bold; vertical-align: text-top;" ><a style="text-decoration: none; color: black;" href="kjv/1ch/13/2/" title="verify" target="_blank">2</a></span> <div id="div2_verse_6" style=""><a class="class_0" >And </a><a class="class_H1732" href="?Strongs=H1732&t=KJV" title="[H1732] - David - �״דָּו�: from the same as דּוֹד (H1730)" style="text-decoration: none; color: black;" target="_blank">David</a><a class="class_0" ></a> 
<a class="class_0" > </a><a class="class_H559" href="?Strongs=H559&t=KJV" title="[H559] - 'amar - �׷אָמ�: a primitive root" style="text-decoration: none; color: black;" target="_blank">said</a><a class="class_0" ></a> 
<a class="class_0" > unto all the </a><a class="class_H6951" href="?Strongs=H6951&t=KJV" title="[H6951] - qahal - קָהֵל: from קָהַל (H6950)" style="text-decoration: none; color: black;" target="_blank">congregation</a><a class="class_0" ></a> 
<a class="class_0" > of </a><a class="class_H3478" href="?Strongs=H3478&t=KJV" title="[H3478] - Yisra'el - יִשְׂרָאֵל: from שָׂרָה (H8280) and אֵל (H410)" style="font-weight: bold; text-decoration: none; color: black;" target="_blank">Israel</a><a class="class_0" >,</a> 
<a class="class_0" > If <em>it seem</em> </a><a class="class_H2895" href="?Strongs=H2895&t=KJV" title="[H2895] - qahal - �׹טו�: a primitive root" style="text-decoration: none; color: black;" target="_blank">good</a><a class="class_0" ></a> 
<a class="class_0" > unto you, and <em>that it be</em> of the </a><a class="class_H3068" href="?Strongs=H3068&t=KJV" title="[H3068] - Yĕhovah - �׸יְהֹו�: from הָיָה (H1961)" style="text-decoration: none; color: black;" target="_blank">LORD</a><a class="class_0" ></a> 
<a class="class_0" > our </a><a class="class_H430" href="?Strongs=H430&t=KJV" title="[H430] - 'elohiym - אֱלֹהִים: plural of אֱלוֹהַּ (H433)" style="text-decoration: none; color: black;" target="_blank">God</a><a class="class_0" >,</a> 
<a class="class_0" > let us </a><a class="class_H7971" href="?Strongs=H7971&t=KJV" title="[H7971] - shalach - �׷שָׁל�: a primitive root" style="text-decoration: none; color: black;" target="_blank">send</a><a class="class_0" ></a> 
<a class="class_0" > </a><a class="class_H6555" href="?Strongs=H6555&t=KJV" title="[H6555] - parats - �׷פָּר�: a primitive root" style="text-decoration: none; color: black;" target="_blank">abroad</a><a class="class_0" ></a> 
<a class="class_0" > unto our </a><a class="class_H251" href="?Strongs=H251&t=KJV" title="[H251] - 'ach - �׸א�: a primitive word" style="font-weight: bold; text-decoration: none; color: black;" target="_blank">brethren</a><a class="class_0" ></a> 
<a class="class_0" > every where</a><a class="class_H7604" href="?Strongs=H7604&t=KJV" title="[H7604] - sha'ar - �׷שָׁא�: a primitive root" style="text-decoration: none; color: black;" target="_blank">, <em>that are</em> </a><a class="class_0" >left</a> 
<a class="class_0" > in all the </a><a class="class_H776" href="?Strongs=H776&t=KJV" title="[H776] - 'erets - �׶אֶר�: from an unused root probably meaning to be firm" style="font-weight: bold; text-decoration: none; color: black;" target="_blank">land</a><a class="class_0" ></a> 
<a class="class_0" > of </a><a class="class_H3478" href="?Strongs=H3478&t=KJV" title="[H3478] - Yisra'el - יִשְׂרָאֵל: from שָׂרָה (H8280) and אֵל (H410)" style="font-weight: bold; text-decoration: none; color: black;" target="_blank">Israel</a><a class="class_0" >,</a> 
<a class="class_0" > and with them <em>also</em> to the </a><a class="class_H3548" href="?Strongs=H3548&t=KJV" title="[H3548] - kohen - כֹּהֵן: active participle of כָּהַן (H3547)" style="text-decoration: none; color: black;" target="_blank">priests</a><a class="class_0" ></a> 
<a class="class_0" > and </a><a class="class_H3881" href="?Strongs=H3881&t=KJV" title="[H3881] - Leviyiy - לְוִי: patronymically from לֵוִי (H3878)" style="text-decoration: none; color: black;" target="_blank">Levites</a><a class="class_0" ></a> 
<a class="class_0" > <em>which are</em> in their </a><a class="class_H5892" href="?Strongs=H5892&t=KJV" title="[H5892] - `iyr - ��עִי: from עוּר (H5782) a city (a place guarded by waking or a watch) in the widest sense (even of a mere encampment or post)" style="font-weight: bold; text-decoration: none; color: black;" target="_blank">cities</a><a class="class_0" ></a> 
<a class="class_0" > <em>and</em> </a><a class="class_H4054" href="?Strongs=H4054&t=KJV" title="[H4054] - migrash - מִגְרָשׁ: from גָּרַשׁ (H1644)" style="text-decoration: none; color: black;" target="_blank">suburbs</a><a class="class_0" >,</a> 
<a class="class_0" > that they may </a><a class="class_H6908" href="?Strongs=H6908&t=KJV" title="[H6908] - qabats - �׷קָב�: a primitive root" style="text-decoration: none; color: black;" target="_blank">gather</a><a class="class_0" ></a> 
<a class="class_0" > themselves unto us:</a><a href="?Strongs=&t=KJV" style="text-decoration: none; color: black;" target="_blank"></a><a class="class_0" ></a> 
</div>
</div>

	</td>
<td id="td-id_3" style="background-color: #a9a9a9; border: 1px solid #7A1010; height: 118px; padding: 10px 10px 10px 10px; width: 169px;" valign="top">
	<div id="checkdiv1" style="display:block; width: 350px;"></div>
	<div id="txt0" style="display:block; width: 350px;"></div>
	<div id="txt1" style="display:block; width: 350px;"></div>
    <div id="txt2" style="display:block; width: 350px;"></div>
</td>
<td id="td-id_4" style="background-color: #a9a9a9; border: 1px solid #7A1010; height: 118px; padding: 10px 10px 10px 10px; width: 169px;" valign="top">
	<div id="checkdiv2" style="display:block; width: 350px;"></div>
	<div id="txt4" style="display:block; width: 350px;"></div>
    <div id="txt5" style="display:block; width: 350px;"></div>
</td>
</tr></table>
</body>
</html>

好吧,我已经切断了很多代码,突然之间什么都不管用,但我希望你明白这个想法。如果不清楚,请进一步询问我。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题