有些事情很奇怪,我被难住了。
当我有一个带有占位符的输入字段时,例如:
<input id="box1" placeholder="not applicable">
我一直能够抓取用户输入,或者如果输入留空,则带有 jquery 的占位符值如下:
var text = $('#box1').val();
没什么大不了的。 使用jquery .val()
总是可以解决问题。然后我开始在以前工作的应用程序中看到一些代码输出错误,其中空输入没有捕获占位符值。
JavaScript引擎是否发生了一些变化来解释这一点?或者,如果输入字段为空,是否有一种新方法可以获取占位符值?
请参阅此示例:
$('#done').on('click', function(){
if($('#box3').val() == ''){
var box3 = $(this).data('placeholder');
} else {
var box3 = $('#box3').val();
}
$('#output').val(box3);
});
// Clicking the button doesn't capture the placeholder value if empty?
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<input id="box3" placeholder="not applicable">
<br><br>
<button id="done">
Done
</button>
<br><br>
<textarea id="output"></textarea>
<br><br>
<p>
Why doesn't the button click capture the value of the placeholder in this instance, using jquery 3.1.1?
</p>
使用 attr('placeholder')
.此外,您在 if
语句中使用this
是错误的。它提到了click
职能的主题。
$('#done').on('click', function(){
if($('#box3').val() == ''){
var box3 = $('#box3').attr('placeholder');
} else {
var box3 = $('#box3').val();
}
$('#output').val(box3);
});
// Clicking the button doesn't capture the placeholder value if empty?
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<input id="box3" placeholder="not applicable">
<br><br>
<button id="done">
Done
</button>
<br><br>
<textarea id="output"></textarea>
<br><br>
<p>
Why doesn't the button click capture the value of the placeholder in this instance, using jquery 3.1.1?
</p>