質問編集履歴

1

タグ属性について追記しました

2020/04/15 02:22

投稿

arakuman
arakuman

スコア17

test CHANGED
File without changes
test CHANGED
@@ -128,4 +128,32 @@
128
128
 
129
129
 
130
130
 
131
+
132
+
133
+ 追記です
134
+
135
+ ユーザー名のタグ
136
+
137
+ ```html
138
+
139
+ <input type="text" name="Account" id="Account" maxlength="16" style="width:170px; height:15px;" onkeypress="{if (event.keyCode == 13) onchg();}">
140
+
141
+ ```
142
+
143
+ に対して
144
+
145
+ ```vba
146
+
147
+ .getElementById("Account").Value = "****"
148
+
149
+ .getElementsByName("Account")(0).Value = "****"
150
+
151
+ ```
152
+
153
+ など可能な限りのタグ属性で試しました。
154
+
155
+
156
+
157
+
158
+
131
159
  お忙しいところ恐縮ですが宜しくお願い致します。