gpt4 book ai didi

javascript - 如何调用jquery

转载 作者:行者123 更新时间:2023-12-02 15:21:55 25 4
gpt4 key购买 nike

我以前从未使用过 Jquery,我知道如何从按钮的 onclick 调用以下函数来使用 textarea

功能

$(document).ready(function() {
$('#demo1').highlightTextarea({
words: {
color: 'red',
words: ['N/A','n/a']
},
debug: true
});

我正在查看的代码示例如下:

html代码

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.min.js"></script>

<link href="css/jquery.highlighttextarea.css" rel="stylesheet">
<script src="js/jquery.highlighttextarea.js"></script>
</head>
<body>

<textarea rows="4" cols="50">
This is a example n/a of all the following N/A
Thanks
</textarea>

<button type="button" onclick= >Call function </button>

<script type='text/javascript'>
$(document).ready(function() {
$('#demo1').highlightTextarea({
words: {
color: 'red',
words: ['N/A','n/a']
},
debug: true
});

});
</script>

</body>
</html>

提前感谢您的帮助

最佳答案

<script type='text/javascript'> 
$(document).ready(function() {
highlight_Textarea(); // to run the function after document ready
});
function highlight_Textarea(){
$('#demo1').highlightTextarea({
words: {
color: 'red',
words: ['N/A','n/a']
},
debug: true
});
}

</script>

在 html 中

<button type="button" onclick="highlight_Textarea()"></button>

或者您可以在没有 onclick 属性的情况下使用它

<script type='text/javascript'> 
$(document).ready(function() {
$('button[type="button"]').on('click',function(){
$('#demo1').highlightTextarea({
words: {
color: 'red',
words: ['N/A','n/a']
},
debug: true
});
});
});
</script>

在 html 中

<button type="button"></button>

Note: before everything be sure to set the Id demo1 to your textarea

<textara id="demo1"  ...... 

关于javascript - 如何调用jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33973519/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com