请教一个关于文本替换的问题
$("#btn btn-primary").click(function(){ // alert("aha~!"); $("#textp").text("Hello world!"); $("#textp").html("Hello world!"); $("#textp").val("Hello world!"); });
为什么这么写,点击保存按钮时无法更新textp块的内容呢?alert明明有效的。
$("#btn btn-primary").click(function(){ // alert("aha~!"); $("#textp").text("Hello world!"); $("#textp").html("Hello world!"); $("#textp").val("Hello world!"); });
为什么这么写,点击保存按钮时无法更新textp块的内容呢?alert明明有效的。
2017-05-15
举报