在 jQuery 中更改输入类型值属性

jqueryweb developmentobject oriented programming

假设以下是我们的输入类型及其值,"John Smith" −

<input type = 'text' value = 'John Smith' id = 'changeTheName' />

要更改,请使用 attr() 方法 −

$('#changeTheName').attr('value', 'Please enter your name.......');

您需要使用 attr() 的概念。以下是代码 −

示例

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initialscale=1.0">
<title>Document</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<input type = 'text' value = 'John Smith' id = 'changeTheName' />
<script>
   $('#changeTheName').attr('value', 'Please enter your name.......');
</script>
</body>
</html>

要运行上述程序,请保存文件名"anyName.html(index.html)",然后右键单击该文件。在 VS Code 编辑器中选择选项"使用 Live Server 打开"。

输出

这将产生以下输出 −


相关文章