サブ文字列がわかっている場合、「文字列に特定のサブ文字列が含まれる」のヘルプがたくさんあるので、次のように指定できます-"Number" .in(Str))OR Str.indexOf( "Number")
しかし、私の場合、文字列とサブ文字列の両方が実行時に読み込まれるので、次のように試しました-
function compareTables1(row,kk) {
$('#table2 tr').each(function(p) {
if (!this.rowIndex) return; // skip first row
var customer = $(this).find("td").eq(0).html();
if (customer.trim() == row.trim()) {
checkme(this, kk);
}
else
{
if (row.in(customer)) { //why this does not work????
alert("success sub str check");
}}});
}
コード全体へのリンクは -http://jsfiddle.net/w7akB/55/
私はJqueryを学んでいて、ここで何か小さなものが欠けていることは確かです。事前に助けてくれてありがとう。