由于某种原因$("#thebutton").val("New text")
不起作用。
答案 0 :(得分:22)
嗯,这对我有用(在Chrome 4,FireFox 3.6,IE8上测试):
<html>
<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
$("#thebutton").val("New text");
});
</script>
</head>
<body>
<input id="thebutton" type="submit" value="OK" />
</body>
</html>
答案 1 :(得分:4)
如果您使用的是html按钮,即<button id='thebutton ' > Button Val </button>
然后使用$("#thebutton").text("NEW Text");