我希望不再需要每次都填写表格,而是需要代码自动填写表格,这样我就不必一次又一次地填写表格。
链接:https://www.locker-ambin.co.il/creditcard/choosinglocker/
像这样:
1:נסציונה
2:שששנתיאליעזרבןיהודה
答案 0 :(得分:0)
您可以为这些输入字段提供id值,然后使用
document.getElementById("mytext").value = "My value";
答案 1 :(得分:0)
只需为文本字段指定value
属性:
<input value="hello" type="text" class="input ui-autocomplete-input" id="choose_location" autocomplete="off">
答案 2 :(得分:0)
请参见下面的代码:
document.getElementById("choose_city").value = "נס ציונה";
document.getElementById("choose_location").value ="אליעזר בן יהודה";
<div class="student_num">
<div class="student_num_r">
בחר ישוב:
<span role="status" aria-live="polite" class="ui-helper-hidden-accessible"></span><input type="text" class="input ui-autocomplete-input" id="choose_city" value="" autocomplete="off">
</div>
<div class="student_num_l">
בחר בית ספר:
<span role="status" aria-live="polite" class="ui-helper-hidden-accessible"></span><input type="text" class="input ui-autocomplete-input" id="choose_location" value="" autocomplete="off">
</div>
</div>
答案 3 :(得分:0)
您是说小书签吗?创建一个书签并将此代码保存到其中。然后,您可以在页面上单击它
javascript:(function() {
document.getElementById("choose_city").value = "נס ציונה";
document.getElementById("choose_location").value ="אליעזר בן יהודה";
)()