我无法使用这些简单的东西,我有一个文本文件,其中包含一些文本,我想要一个警报,其中包含单击"时触发的文本文件内的文本。 BTN /链接"
此外,我希望能够比较并查看文件中的文本是真还是假:
HTML:
<div id="alert_btn"><a href="javascript:alert_fn();">click_me</a></div>
JQuery的/ JavaScript的:
function alert_fn(){
$.get('http://www.patan77.com/example_test.txt', function(data) {
alert(data);
if (data == true){
alert("true");
}else{
alert("false");
}
});
}
提前致谢。
答案 0 :(得分:1)
想想我现在就开始工作了。
<强> Test_DEMO 强>
使用jQuery / Javascript的HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="1" />
<title>Test_Alert</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>
function alert_fn(){
$.get('http://www.patan77.com/example_test.txt', function(data) {
alert(data);
});
}
function alert_fn_2(){
$.get('http://www.patan77.com/example_test.txt', function(data) {
var text_file = data;
if (text_file == "hello world"){
alert ("its true");
}else{
alert ("its false");
}
});
}
</script>
</head>
<body>
<div id="alert_btn"><a href="javascript:alert_fn();">click_me</a></div>
<div id="alert_btn_2"><a href="javascript:alert_fn_2();">click_me_to_see_if_true</a></div>
v.06
</body>
</html>