我想写一个脚本,当我的输入字段有给定值时,我的脚本会提示用户提示: 当输入字段的值是字符串时:" vuanhtuan"然后提示用户。
<script type="text/javascript">
$(document).ready(function () {
if(window.location.href.indexOf("franky") > -1) {
alert("your url contains the name franky");
}
});
</script>
上面的代码用于从URL读取,但我不知道如何更改它以使其适用于输入字段。
答案 0 :(得分:0)
如果你有一个像
这样的输入字段<input type="text" id="someid">
然后你可以使用
if ($("#someid").val().indexOf("franky") != -1) {
alert("your input contains the name franky");
}