AI智能
改变未来

jQuery文本相关操作


jQuery文本相关操作

<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"UTF-8\"><meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"><script src=\"jquery-3.3.1.min.js\"></script><title>Document</title><style>div{height: 100px;width: 100px;border: 1px solid red;}</style><script>$(function(){var btu = document.getElementsByTagName(\"button\");btu[0].onclick= function(){$(\'div\').html(\"<span>呵呵呵</span>\")//设置文本内容};btu[1].onclick = function(){console.log($(\'div\').html())//获取文本内容}btu[2].onclick= function(){$(\'div\').text(\"<span>哈哈哈</span>\")//设置text};btu[3].onclick = function(){console.log($(\'div\').text())//获取text}btu[4].onclick= function(){$(\'input\').val(\"<span>嘻嘻</span>\")//设置文本内容};btu[5].onclick = function(){console.log($(\'input\').val())//获取文本内容,用在input输入框}})</script></head><body><button>设置html</button><button>获取html</button><button>设置text</button><button>获取text</button><button>设置value</button><button>获取value</button><div></div><input type=\"text\"></body></html>
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » jQuery文本相关操作