我需要找到單選按鈕,文本和選擇的輸入類型。它很容易找到的東西輸入型與自$(this).attr("type")<input type="x">將返回x 我的問題是,我需要支持<select>元素,不要有type屬性。最終目標是返回收音機,文字或選擇。 我認爲做這樣的事情,但我很好奇,如果有一個更好的辦法: if ($(this).tagName == "input") {
var res
讀取標籤的名字我有這樣的事情: uses MSXML2_TLB;
type TDocumentType = (dtOrder, dtInvoice, dtStatus, dtError); // And a few more, actually
function DetermineDocumentType(doc: IXMLDOMDocument2): TDocumentType;
...