HTMLテーブルのTR内でクリックされた要素を取得しようとしています。TR 内の Select 入力をクリックすると、CurrentTarget
フィールドは「TR」をOriginalTarget
返し、「SELECT」を返します。
これは私のHTMLです:
<table id="0" class="tableEdit">
<thead>
<tr>
<th name="id"></th>
<th name="name">Descripción Registro</th>
<th name="select">Fecha</th>
</tr>
</thead>
<tbody>
<tr>
<td>1651</td>
<td>Name</td>
<td>
<select name="selectName">
<option value="1">1</option>
<option value="2">2</option>
</select>
</td>
</tr>
</tbody>
</table>
そして、これは私のコードです:
//trb is each TR element of the line
$(trb).click(function(elem){
if (elem.currentTarget && elem.currentTarget.tagName.toLowerCase() === "tr" && !isInput(elem.originalTarget)){
if (editableRow){
var rowTrigger = editableRow.find("button").get();
$.editRow(rowTrigger,$.tableEditor.vault.getTableID($("#" + id)));
}
});
このコードは Web ブラウザでは問題なく動作しますが、OriginalTarget が を返すため、モバイル デバイスでは動作しませんundefined
。モバイル Web ブラウザーで元のターゲットを取得する方法はありますか?