একটি ইনপুট উপাদানটির বর্তমান মান পেতে আপনাকে বিভিন্ন উপায়ে ব্যবহার করতে হবে।
পদ্ধতি - 1
আপনি যদি কোনও সাধারণ ব্যবহার করতে চান তবে এটি ব্যবহার .val()
করে দেখুন:
<input type="text" id="txt_name" />
ইনপুট থেকে মানগুলি পান
// use to select with DOM element.
$("input").val();
// use the id to select the element.
$("#txt_name").val();
// use type="text" with input to select the element
$("input:text").val();
ইনপুট মান সেট করুন
// use to add "text content" to the DOM element.
$("input").val("text content");
// use the id to add "text content" to the element.
$("#txt_name").val("text content");
// use type="text" with input to add "text content" to the element
$("input:text").val("text content");
পদ্ধতি - 2
.attr()
সামগ্রী পেতে ব্যবহার করুন ।
<input type="text" id="txt_name" value="" />
আমি কেবল ইনপুট ক্ষেত্রে একটি বৈশিষ্ট্য যুক্ত করব। value=""
বৈশিষ্ট্য হ'ল আমরা ইনপুট ক্ষেত্রে যে পাঠ্য সামগ্রীটি প্রবেশ করিয়েছি carry
$("input").attr("value");
পদ্ধতি - 3
আপনি এটিকে সরাসরি আপনার input
উপাদানটিতে ব্যবহার করতে পারেন ।
$("input").keyup(function(){
alert(this.value);
});