Latest web development tutorials

HTML DOM bentuk Tombol properti

Tombol Referensi Obyek tombol Objects

Definisi dan Penggunaan

membentuk kembali properti untuk formulir yang berisi tombol referensi.

Jika Anda termasuk tombol, ia mengembalikan objek bentuk, jika tidak termasuk dalam tombol, ia mengembalikan null.

tatabahasa

buttonObject.form


Dukungan Browser

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Semua browser utama mendukung properti bentuk.


contoh

contoh

Contoh berikut kembali membentuk tombol milik id:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.com)</title>
</head>
<body>

<form id="form1">
<button id="button1" type="button">点我!</button>
</form>
<p>含有按钮的表单的ID:
<script>
document.write(document.getElementById("button1").form.id);
</script></p>

</body>
</html>

Coba »


Tombol Referensi Obyek tombol Objects