Jump to content
  • 0

Помогите убрать лишнее поле ввода


Dark_Rix
 Share

Question

Доброго времени суток.

Помогите пожалуйста убрать поле ввода выделенное на скрине (скрин ниже) без ущерба работоспособности всего остального.

c3616b1f278d.jpg

<script type="text/javascript">function changeText(){var rezultat1 = 0;var odin = document.getElementById('odin').value;var spisok = document.getElementById('spisok').options[document.getElementById('spisok').selectedIndex].value;var spisokx = document.getElementById('spisokx').options[document.getElementById('spisokx').selectedIndex].value;rezultat1 = parseFloat(odin);rezultat1 *= parseFloat(spisok);rezultat1 *= parseFloat(spisokx);document.getElementById('rezultat1').innerHTML = rezultat1;}</script><form onsubmit="return false;"><input id="odin" type="number" value="1" oninput="changeText()"> <select id="spisok" onchange="changeText()"><option value="1">A</option><option value="2">B</option><option value="3">C</option><option value="4">D</option><form onsubmit="return false;"><input id="odin2" type="number" value="1" oninput="changeText()"> <select id="spisokx" onchange="changeText()"><option value="1">As</option><option value="2">Bs</option><option value="3">Cs</option><option value="4">Ds</option></select> = <output id="rezultat1">1</output> ink</form>

Заранее огромное спасибо.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

<input id="odin2" type="number" value="1" oninput="changeText()">

вот срока со вторым полем ввода, в ней идентификатор odin2, который в скрипте почему-то не встречается.

 

не слишком силён в js, но попробуйте убрать её. попытка не пытка
 

Link to comment
Share on other sites

  • 0

<input id="odin2" type="number" value="1" oninput="changeText()">

вот срока со вторым полем ввода, в ней идентификатор odin2, который в скрипте почему-то не встречается.

 

не слишком силён в js, но попробуйте убрать её. попытка не пытка

 

При попытке убрать именно строку ввода вместе с ней пропадает и 2е выпадающая менюшка.

Способ нашел: просто добавил в строку с полем ввода это:  style="display: none"

 

Спасибо.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy